We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ee74b74 commit c41fc13Copy full SHA for c41fc13
api/src/main/java/app/simplecloud/api/server/ServerState.java
@@ -35,7 +35,13 @@ public enum ServerState {
35
/**
36
* Server is in the process of shutting down.
37
*/
38
- STOPPING;
+ STOPPING,
39
+
40
+ /**
41
+ * Server was shut down and is now being cleaned up.
42
+ */
43
+ CLEANUP
44
+ ;
45
46
public static ServerState parse(String state) {
47
return ServerState.valueOf(state.toUpperCase().replace("SERVER_STATE_", ""));
build.gradle.kts
@@ -9,7 +9,7 @@ plugins {
9
`signing`
10
}
11
12
-val baseVersion = "0.1.0-platform.13"
+val baseVersion = "0.1.0-platform.14"
13
val commitHash = System.getenv("COMMIT_HASH")
14
val isSnapshot = commitHash != null
15
0 commit comments