dont fail silently
This commit is contained in:
parent
119f2ac14c
commit
e10cb2051e
@ -63,7 +63,12 @@ public class MapWorker extends PausableThread {
|
||||
if (tile == null)
|
||||
return;
|
||||
|
||||
mMapGenerator.executeJob(tile);
|
||||
try {
|
||||
mMapGenerator.executeJob(tile);
|
||||
} catch (Exception e) {
|
||||
e.printStackTrace();
|
||||
return;
|
||||
}
|
||||
|
||||
if (!isInterrupted()) {
|
||||
mTileManager.passTile(tile);
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user