mirror of
https://github.com/Miasmusa/Shadow.git
synced 2024-11-14 19:04:54 -05:00
fix bug
This commit is contained in:
parent
935d7b68ab
commit
afe0f64462
1 changed files with 1 additions and 1 deletions
|
@ -184,7 +184,7 @@ public class ShadowMain implements ModInitializer {
|
||||||
CommandRegistry.init();
|
CommandRegistry.init();
|
||||||
log(Level.INFO, "Sending post window init");
|
log(Level.INFO, "Sending post window init");
|
||||||
Events.fireEvent(EventType.POST_INIT, new PostInitEvent());
|
Events.fireEvent(EventType.POST_INIT, new PostInitEvent());
|
||||||
for (Module module : ModuleRegistry.getModules()) {
|
for (Module module : new ArrayList<>(ModuleRegistry.getModules())) {
|
||||||
module.postInit();
|
module.postInit();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue