Fix ticking on the server

This commit is contained in:
Christian Weeks 2012-06-01 11:07:14 -04:00
parent ed08c425af
commit ad5dc783d8
1 changed files with 1 additions and 1 deletions

View File

@ -39,7 +39,7 @@ public abstract class BaseMod implements cpw.mods.fml.common.modloader.BaseMod
if (tick==TickType.WORLD && tickEnd) {
return onTickInGame((MinecraftServer)minecraftInstance);
} else {
return false;
return true;
}
}