Fixed waves appearing on Erekir
This commit is contained in:
@@ -51,7 +51,6 @@ public class EventType{
|
||||
public static class MapMakeEvent{}
|
||||
public static class MapPublishEvent{}
|
||||
public static class SaveWriteEvent{}
|
||||
public static class SaveLoadEvent{}
|
||||
public static class ClientCreateEvent{}
|
||||
public static class ServerLoadEvent{}
|
||||
public static class DisposeEvent{}
|
||||
@@ -78,6 +77,14 @@ public class EventType{
|
||||
/** Called when a game begins and the world is loaded. */
|
||||
public static class WorldLoadEvent{}
|
||||
|
||||
public static class SaveLoadEvent{
|
||||
public final boolean isMap;
|
||||
|
||||
public SaveLoadEvent(boolean isMap){
|
||||
this.isMap = isMap;
|
||||
}
|
||||
}
|
||||
|
||||
/** Called when a sector is destroyed by waves when you're not there. */
|
||||
public static class SectorLoseEvent{
|
||||
public final Sector sector;
|
||||
|
||||
Reference in New Issue
Block a user