Transparent unloading {,tile}entities from world
This commit is contained in:
@ -7,6 +7,8 @@ import java.util.Date;
|
||||
import java.util.List;
|
||||
|
||||
import net.minecraft.server.MinecraftServer;
|
||||
import net.minecraft.tileentity.TileEntity;
|
||||
import net.minecraft.world.WorldServer;
|
||||
import net.minecraftforge.cauldron.CauldronHooks;
|
||||
import net.minecraftforge.cauldron.configuration.BoolSetting;
|
||||
import net.minecraftforge.cauldron.configuration.IntSetting;
|
||||
@ -116,9 +118,7 @@ public class CauldronCommand extends Command
|
||||
ChatColor.GOLD + " Tile Entities: " + ChatColor.GRAY + world.loadedTileEntityList.size()
|
||||
);
|
||||
sender.sendMessage(ChatColor.GOLD + " Entities Last Tick: " + ChatColor.GRAY + world.entitiesTicked +
|
||||
ChatColor.GOLD + " Tiles Last Tick: " + ChatColor.GRAY + world.tilesTicked +
|
||||
ChatColor.GOLD + " Removed Entities: " + ChatColor.GRAY + world.unloadedEntityList.size() +
|
||||
ChatColor.GOLD + " Removed Tile Entities: " + ChatColor.GRAY + world.field_147483_b.size()
|
||||
ChatColor.GOLD + " Tiles Last Tick: " + ChatColor.GRAY + world.tilesTicked
|
||||
);
|
||||
}
|
||||
|
||||
@ -134,7 +134,7 @@ public class CauldronCommand extends Command
|
||||
sender.sendMessage("Chunk info complete");
|
||||
}
|
||||
|
||||
private boolean getToggle(CommandSender sender, String[] args)
|
||||
private boolean getToggle(CommandSender sender, String[] args)
|
||||
{
|
||||
try
|
||||
{
|
||||
|
Reference in New Issue
Block a user