Fix event handlers not logging full errors

This commit is contained in:
2023-06-25 21:51:39 +02:00
parent 3d4058cdae
commit da372e3fb7

View File

@@ -42,7 +42,7 @@ public final class CraterEventBus {
try { try {
m.method.invoke(m.parentObject, event); m.method.invoke(m.parentObject, event);
} catch (Exception e) { } catch (Exception e) {
throw new RuntimeException(); throw new RuntimeException(e);
} }
}; };