Jump to content
View in the app

A better way to browse. Learn more.

Forge Forums

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Featured Replies

Posted

Hey guys,

 

I've been having a problem with an automatic crossbow in Forge 4.0.0, and I don't know what's happening. All I know is that I have a message written to the log every 24 ticks, and it works fine until I put it inside an if statement checking whether the world is remote. When I put it in that if statement, it will work fine for a couple seconds, then it will randomly stop for about 5 seconds, then keep going, and repeats the cycle.

 

This works fine:

        FMLLog.info("message");
        if (!world.isRemote)
        {
        	world.spawnEntityInWorld(entitybolt);
        }

 

This will stop randomly:

        if (!world.isRemote)
        {
                FMLLog.info("message");
        	world.spawnEntityInWorld(entitybolt);
        }

 

Can anyone reproduce the problem or let me know what the problem might be? Thanks.

  • Author

Okay so putting

 

	FMLLog.info("world.isRemote: " + world.isRemote);

 

into the onUpdate method shows that world.isRemote is changing from true to false...

 

 

 

2012-08-18 16:13:00 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:00 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:00 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:00 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:00 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:00 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:00 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:00 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:00 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:00 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:00 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:00 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:00 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:00 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:00 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:00 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:00 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:00 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:00 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:00 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:00 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:00 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:00 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:00 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:00 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:00 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:00 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:00 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:00 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:00 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:00 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:00 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:00 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:00 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:00 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:00 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:00 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:00 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:00 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:00 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:00 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:00 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:00 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:00 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:00 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:00 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:00 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:00 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:00 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:00 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:00 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:00 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:00 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:00 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:00 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:00 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:00 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:00 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:00 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:00 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:00 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:00 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:00 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:00 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:00 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:00 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:00 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:00 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:00 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:00 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:00 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:00 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:00 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:00 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:00 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:00 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:00 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:00 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:00 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:00 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:00 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:00 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:00 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:00 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:00 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:00 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:00 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:00 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:00 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:00 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:00 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:00 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:00 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:00 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:00 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:00 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:00 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:00 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:00 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:00 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:00 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:00 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:00 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:00 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:00 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:00 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:00 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:00 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:00 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:00 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:00 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:00 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:00 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:00 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:00 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:00 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:00 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:00 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:00 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:00 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:00 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:00 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:00 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:00 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:00 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:00 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:00 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:00 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:00 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:00 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:00 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:00 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:00 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:00 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:00 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:00 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:00 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:00 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:00 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:00 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:00 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:00 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:00 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:00 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:00 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:00 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:00 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:00 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:00 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:00 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:00 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:00 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:00 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:00 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:00 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:00 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:00 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:00 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:00 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:00 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:00 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:00 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:00 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:00 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:01 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:01 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:01 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:01 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:01 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:01 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:01 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:01 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:01 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:01 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:01 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:01 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:01 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:01 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:01 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:01 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:01 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:01 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:01 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:01 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:01 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:01 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:01 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:01 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:01 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:01 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:01 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:01 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:01 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:01 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:01 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:01 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:01 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:01 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:01 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:01 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:01 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:01 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:01 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:01 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:01 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:01 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:01 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:01 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:01 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:01 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:01 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:01 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:01 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:01 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:01 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:01 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:01 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:01 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:01 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:01 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:01 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:01 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:01 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:01 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:01 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:01 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:01 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:01 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:01 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:01 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:01 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:01 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:01 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:01 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:01 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:01 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:01 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:01 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:01 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:01 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:01 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:01 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:01 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:01 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:01 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:01 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:01 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:01 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:01 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:01 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:01 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:01 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:01 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:01 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:01 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:01 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:01 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:01 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:01 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:01 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:01 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:01 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:01 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:01 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:01 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:01 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:01 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:01 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:01 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:01 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:01 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:01 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:01 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:01 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:01 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:01 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:01 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:01 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:01 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:01 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:01 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:01 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:01 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:01 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:01 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:01 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:01 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:01 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:01 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:01 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:01 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:01 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:01 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:01 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:01 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:01 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:01 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:01 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:01 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:01 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:01 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:01 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:01 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:01 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:01 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:01 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:01 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:01 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:01 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:01 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:01 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:01 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:02 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:02 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:02 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:02 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:02 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:02 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:02 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:02 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:02 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:02 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:02 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:02 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:02 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:02 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:02 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:02 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:02 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:02 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:02 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:02 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:02 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:02 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:02 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:02 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:02 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:02 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:02 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:02 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:02 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:02 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:02 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:02 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:02 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:02 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:02 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:02 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:02 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:02 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:02 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:02 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:02 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:02 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:02 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:02 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:02 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:02 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:02 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:02 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:02 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:02 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:02 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:02 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:02 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:02 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:02 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:02 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:02 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:02 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:02 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:02 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:02 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:02 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:02 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:02 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:02 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:02 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:02 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:02 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:02 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:02 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:02 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:02 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:02 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:02 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:02 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:02 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:02 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:02 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:02 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:02 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:02 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:02 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:02 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:02 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:02 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:02 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:02 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:02 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:02 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:02 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:02 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:02 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:02 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:02 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:02 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:02 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:02 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:02 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:02 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:02 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:02 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:02 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:02 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:02 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:02 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:02 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:02 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:02 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:02 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:02 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:02 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:02 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:02 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:02 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:02 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:02 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:02 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:02 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:02 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:02 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:02 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:02 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:02 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:02 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:02 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:02 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:02 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:02 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:02 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:02 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:02 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:02 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:02 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:02 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:02 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:02 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:02 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:02 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:02 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:02 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:02 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:02 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:02 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:02 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:02 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:02 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:02 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:02 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:02 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:02 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:02 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:02 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:03 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:03 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:03 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:03 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:03 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:03 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:03 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:03 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:03 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:03 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:03 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:03 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:03 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:03 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:03 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:03 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:03 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:03 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:03 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:03 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:03 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:03 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:03 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:03 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:03 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:03 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:03 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:03 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:03 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:03 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:03 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:03 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:03 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:03 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:03 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:03 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:03 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:03 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:03 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:03 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:03 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:03 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:03 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:03 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:03 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:03 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:03 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:03 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:03 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:03 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:03 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:03 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:03 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:03 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:03 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:03 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:03 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:03 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:03 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:03 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:03 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:03 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:03 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:03 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:03 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:03 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:03 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:03 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:03 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:03 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:03 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:03 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:03 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:03 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:03 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:03 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:03 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:03 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:03 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:03 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:03 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:03 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:03 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:03 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:03 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:03 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:03 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:03 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:03 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:03 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:03 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:03 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:03 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:03 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:03 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:03 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:03 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:03 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:03 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:03 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:03 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:03 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:03 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:03 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:03 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:03 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:03 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:03 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:03 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:03 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:03 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:03 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:03 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:03 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:03 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:03 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:03 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:03 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:03 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:03 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:03 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:03 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:03 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:03 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:03 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:03 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:03 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:03 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:03 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:03 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:03 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:03 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:03 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:03 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:03 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:03 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:03 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:03 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:03 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:03 [iNFO] [ForgeModLoader] world.isRemote: false
2012-08-18 16:13:03 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:03 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:03 [iNFO] [ForgeModLoader] world.isRemote: true
2012-08-18 16:13:03 [iNFO] [ForgeModLoader] world.isRemote: true

 

 

Yes, when playing on a local game, it will switch form true to false constantly. Because you are actually getting called from two different threads. With two different worlds.

One locally on the client, the other is the server's world.

I do Forge for free, however the servers to run it arn't free, so anything is appreciated.
Consider supporting the team on Patreon

  • Author

Ah okay, that makes sense. So how would I go about spawning a non-mob entity? ItemBow does it exactly the same as 1.2.5, and works fine with world.isRemote, whereas mine is spawning dummy entities when world.isRemote is true. The code is almost exactly the same as vanilla.

Yes, it does,, isRemote just tells you what side you're on.

Only spawn things on the server side...

I do Forge for free, however the servers to run it arn't free, so anything is appreciated.
Consider supporting the team on Patreon

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

Important Information

By using this site, you agree to our Terms of Use.

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.