diff options
author | Tyler Murphy <tylermurphy534@gmail.com> | 2022-08-16 20:10:36 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-16 20:10:36 -0400 |
commit | 725db2875c3ddb7829ebe8f7e68886eec83337f9 (patch) | |
tree | 12d39d7e1e2c09e0db81c7c3d1313ec79b01991a /src/main/java/net/tylermurphy/hideAndSeek/command/location/util/Locations.java | |
parent | Merge pull request #72 from tylermurphy534/1.6.0 (diff) | |
parent | delayed respawn (diff) | |
download | kenshinshideandseek-725db2875c3ddb7829ebe8f7e68886eec83337f9.tar.gz kenshinshideandseek-725db2875c3ddb7829ebe8f7e68886eec83337f9.tar.bz2 kenshinshideandseek-725db2875c3ddb7829ebe8f7e68886eec83337f9.zip |
Merge pull request #76 from tylermurphy534/1.6.1
1.6.1
Diffstat (limited to 'src/main/java/net/tylermurphy/hideAndSeek/command/location/util/Locations.java')
-rw-r--r-- | src/main/java/net/tylermurphy/hideAndSeek/command/location/util/Locations.java | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/main/java/net/tylermurphy/hideAndSeek/command/location/util/Locations.java b/src/main/java/net/tylermurphy/hideAndSeek/command/location/util/Locations.java index 137bc69..35f74ea 100644 --- a/src/main/java/net/tylermurphy/hideAndSeek/command/location/util/Locations.java +++ b/src/main/java/net/tylermurphy/hideAndSeek/command/location/util/Locations.java @@ -7,7 +7,8 @@ public enum Locations { GAME("spawns.game"), LOBBY("spawns.lobby"), - EXIT("spawns.exit"); + EXIT("spawns.exit"), + SEEKER("spawns.seeker"); private final String path; Locations(String path) { |