properly handle BufferedStateManipulator application exception

This commit is contained in:
dfsek 2021-01-05 01:07:58 -07:00
parent a38eba2916
commit aa406d9b8b

View File

@ -19,7 +19,7 @@ public class BufferedStateManipulator implements BufferedItem {
try {
state.applyState(data);
state.update(false);
} catch(ClassCastException e) {
} catch(Exception e) {
main.getLogger().warning("Could not apply BlockState at " + origin + ": " + e.getMessage());
}
}