Like the title says, my ServerStart event is working perfectly fine but PreInit and Init are not working at all. Pretty sure it was working yesterday.
I’m using SpongeForge 880 and 2.1-SNAPHOT
`@Plugin(id = "KRules", name = "KRules", version = "1.0")
public class KRules {
@Listener
private void onPreInitialization(GamePreInitializationEvent event){
log("PRE INIT<<<---------------------------------");
}
@Listener
private void onInitialization(GameInitializationEvent event){
log("IT'S WORKING!!! IIIIIT'S WORRRRKKKIIIIINGGGGG!!!!.gif");
}
@Listener
public void onServerStart(GameStartedServerEvent event) {
log("This one works");
}
void log(String t) {
log(Level.INFO, t);
}
void log(Level level, String t) {
Logger.getGlobal().log(level, t, this);
}
}