| 58 | // Do not change these 7 Functions. Just keep them this way. |
| 59 | @cpw.mods.fml.common.Mod.EventHandler public final void onPreLoad (cpw.mods.fml.common.event.FMLPreInitializationEvent aEvent) {onModPreInit(aEvent);} |
| 60 | @cpw.mods.fml.common.Mod.EventHandler public final void onLoad (cpw.mods.fml.common.event.FMLInitializationEvent aEvent) {onModInit(aEvent);} |
| 61 | @cpw.mods.fml.common.Mod.EventHandler public final void onPostLoad (cpw.mods.fml.common.event.FMLPostInitializationEvent aEvent) {onModPostInit(aEvent);} |
| 62 | @cpw.mods.fml.common.Mod.EventHandler public final void onServerStarting (cpw.mods.fml.common.event.FMLServerStartingEvent aEvent) {onModServerStarting(aEvent);} |
| 63 | @cpw.mods.fml.common.Mod.EventHandler public final void onServerStarted (cpw.mods.fml.common.event.FMLServerStartedEvent aEvent) {onModServerStarted(aEvent);} |