diff options
author | tylermurphy534 <tylermurphy534@gmail.com> | 2022-10-31 23:28:45 -0400 |
---|---|---|
committer | tylermurphy534 <tylermurphy534@gmail.com> | 2022-10-31 23:28:45 -0400 |
commit | 7530fe5e2dad89cabd694aefc91758a651ca9196 (patch) | |
tree | 0fc693e6b33b05a20c85ef0027a4c3638ae1511f /src/main/java/net/tylermurphy/hideAndSeek/command/Leave.java | |
parent | finish beta build of multi map support (diff) | |
download | kenshinshideandseek-7530fe5e2dad89cabd694aefc91758a651ca9196.tar.gz kenshinshideandseek-7530fe5e2dad89cabd694aefc91758a651ca9196.tar.bz2 kenshinshideandseek-7530fe5e2dad89cabd694aefc91758a651ca9196.zip |
1.7.0 beta 1
Diffstat (limited to 'src/main/java/net/tylermurphy/hideAndSeek/command/Leave.java')
-rw-r--r-- | src/main/java/net/tylermurphy/hideAndSeek/command/Leave.java | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/main/java/net/tylermurphy/hideAndSeek/command/Leave.java b/src/main/java/net/tylermurphy/hideAndSeek/command/Leave.java index 0e860cb..d22aad9 100644 --- a/src/main/java/net/tylermurphy/hideAndSeek/command/Leave.java +++ b/src/main/java/net/tylermurphy/hideAndSeek/command/Leave.java @@ -20,6 +20,7 @@ package net.tylermurphy.hideAndSeek.command; import net.tylermurphy.hideAndSeek.Main; +import net.tylermurphy.hideAndSeek.command.util.Command; import org.bukkit.Bukkit; import org.bukkit.entity.Player; @@ -28,7 +29,7 @@ import java.util.List; import static net.tylermurphy.hideAndSeek.configuration.Config.errorPrefix; import static net.tylermurphy.hideAndSeek.configuration.Localization.message; -public class Leave implements ICommand { +public class Leave extends Command { public void execute(Player sender, String[] args) { if (Main.getInstance().getGame().checkCurrentMap()) { |