Skip to content

Commit

Permalink
fix log msg
Browse files Browse the repository at this point in the history
  • Loading branch information
brachy84 committed Oct 6, 2024
1 parent 9065eb2 commit 88e2054
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ public class GroovyScript {
@Mod.EventHandler
public void onConstruction(FMLConstructionEvent event) {
if (!SandboxData.isInitialised()) {
LOGGER.throwing(new IllegalStateException("Sandbox data should have been initialised by now, but isn't! Try Initialising again."));
LOGGER.throwing(new IllegalStateException("Sandbox data should have been initialised by now, but isn't! Trying to initialize again."));
SandboxData.initialize((File) FMLInjectionData.data()[6], LOGGER);
}
MinecraftForge.EVENT_BUS.register(this);
Expand Down

0 comments on commit 88e2054

Please sign in to comment.