Fixed waves appearing on Erekir

This commit is contained in:
Anuken
2022-03-02 18:54:21 -05:00
parent d9ced82352
commit 315c273de3
12 changed files with 64 additions and 44 deletions

View File

@@ -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;