fix minor version issues

This commit is contained in:
dfsek
2021-01-10 16:55:49 -07:00
parent 12ff9cc146
commit 27aeb73157
3 changed files with 12 additions and 21 deletions

View File

@@ -57,7 +57,7 @@ public class TreeRegistry extends TerraRegistry<Tree> {
private void addTree(String id) {
try {
add(id, main.getWorldHandle().getTree(id));
} catch(IllegalArgumentException e) {
} catch(Exception e) {
main.getLogger().warning("Unable to load tree " + id + ": " + e.getMessage());
}
}