profiler.endStartSection("worldTick");
world.tick();
profiler.endStartSection("entityTick");
world.updateEntities();
profiler.endStartSection("postForgeTick");
FMLCommonHandler.instance().onPostWorldTick(world);
profiler.endSection();
profiler.startSection("tracker");
world.getEntityTracker().updateTrackedEntities();
profiler.endSection();