summaryrefslogtreewikicommitdiff
path: root/src/main/java/net/tylermurphy/hideAndSeek/command/location
diff options
context:
space:
mode:
authorTyler Murphy <tylermurphy534@gmail.com>2022-08-09 13:43:20 -0400
committerTyler Murphy <tylermurphy534@gmail.com>2022-08-09 13:43:20 -0400
commitd64dce4a26b69d202f9d2943da8da0d3bc9ddad2 (patch)
tree23cef1d812fa41c2185e8ce86b9d176cd950de0b /src/main/java/net/tylermurphy/hideAndSeek/command/location
parentMerge pull request #72 from tylermurphy534/1.6.0 (diff)
downloadkenshinshideandseek-d64dce4a26b69d202f9d2943da8da0d3bc9ddad2.tar.gz
kenshinshideandseek-d64dce4a26b69d202f9d2943da8da0d3bc9ddad2.tar.bz2
kenshinshideandseek-d64dce4a26b69d202f9d2943da8da0d3bc9ddad2.zip
block solidify time, seeker lobby
Diffstat (limited to 'src/main/java/net/tylermurphy/hideAndSeek/command/location')
-rw-r--r--src/main/java/net/tylermurphy/hideAndSeek/command/location/SetSeekerLobbyLocation.java31
-rw-r--r--src/main/java/net/tylermurphy/hideAndSeek/command/location/util/Locations.java3
2 files changed, 33 insertions, 1 deletions
diff --git a/src/main/java/net/tylermurphy/hideAndSeek/command/location/SetSeekerLobbyLocation.java b/src/main/java/net/tylermurphy/hideAndSeek/command/location/SetSeekerLobbyLocation.java
new file mode 100644
index 0000000..c6c3ccb
--- /dev/null
+++ b/src/main/java/net/tylermurphy/hideAndSeek/command/location/SetSeekerLobbyLocation.java
@@ -0,0 +1,31 @@
+package net.tylermurphy.hideAndSeek.command.location;
+
+import net.tylermurphy.hideAndSeek.command.ICommand;
+import net.tylermurphy.hideAndSeek.command.location.util.LocationUtils;
+import net.tylermurphy.hideAndSeek.command.location.util.Locations;
+import org.bukkit.entity.Player;
+
+import static net.tylermurphy.hideAndSeek.configuration.Config.*;
+
+public class SetSeekerLobbyLocation implements ICommand {
+
+ public void execute(Player sender, String[] args) {
+ LocationUtils.setLocation(sender, Locations.SEEKER, vector -> {
+ seekerLobbyWorld = sender.getLocation().getWorld().getName();
+ seekerLobbyPosition = vector;
+ });
+ }
+
+ public String getLabel() {
+ return "setseekerlobby";
+ }
+
+ public String getUsage() {
+ return "";
+ }
+
+ public String getDescription() {
+ return "Sets hide and seeks seeker lobby location to current position";
+ }
+
+}
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) {