profiler.startSection("forgeTick");
FMLCommonHandler.instance().onPreWorldTick(world);
profiler.endStartSection("worldTick");
world.tick();
profiler.endStartSection("entityTick");
world.updateEntities();
profiler.endStartSection("postForgeTick");
FMLCommonHandler.instance().onPostWorldTick(world);
profiler.endSection();