diff options
author | Tyler Murphy <tylermurphy534@gmail.com> | 2021-12-20 19:52:44 -0500 |
---|---|---|
committer | Tyler Murphy <tylermurphy534@gmail.com> | 2021-12-20 19:52:44 -0500 |
commit | 0dee7fd2fba39a31d66a4480eafe3d1d09194c4b (patch) | |
tree | e03814f347859df41531b65841dedebf3b772bc2 /src/main/java/net/tylermurphy/hideAndSeek/command/SetLobbyLocation.java | |
parent | make beta branch use every branch besides master (diff) | |
download | kenshinshideandseek-0dee7fd2fba39a31d66a4480eafe3d1d09194c4b.tar.gz kenshinshideandseek-0dee7fd2fba39a31d66a4480eafe3d1d09194c4b.tar.bz2 kenshinshideandseek-0dee7fd2fba39a31d66a4480eafe3d1d09194c4b.zip |
final 1.3.1 beta
Diffstat (limited to 'src/main/java/net/tylermurphy/hideAndSeek/command/SetLobbyLocation.java')
-rw-r--r-- | src/main/java/net/tylermurphy/hideAndSeek/command/SetLobbyLocation.java | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/main/java/net/tylermurphy/hideAndSeek/command/SetLobbyLocation.java b/src/main/java/net/tylermurphy/hideAndSeek/command/SetLobbyLocation.java index 53ae721..2e96a9d 100644 --- a/src/main/java/net/tylermurphy/hideAndSeek/command/SetLobbyLocation.java +++ b/src/main/java/net/tylermurphy/hideAndSeek/command/SetLobbyLocation.java @@ -28,6 +28,7 @@ public class SetLobbyLocation implements ICommand { newLobbyPosition.setX(player.getLocation().getBlockX()); newLobbyPosition.setY(player.getLocation().getBlockY()); newLobbyPosition.setZ(player.getLocation().getBlockZ()); + lobbyWorld = player.getLocation().getWorld().getName(); lobbyPosition = newLobbyPosition; sender.sendMessage(messagePrefix + message("LOBBY_SPAWN")); addToConfig("spawns.lobby.x", lobbyPosition.getX()); |