fix issue where tps was getting caught in tp check

master
Joey Hines 2018-09-22 22:35:14 -05:00
parent 97161694db
commit 85391029dc
1 changed files with 1 additions and 1 deletions

View File

@ -42,7 +42,7 @@ public class CommandPreprocessListener implements Listener {
boolean isTpCommand = false;
//check if the command is a tp command
if (noSlash(command).startsWith("tp") || noSlash(command).startsWith("teleport") || noSlash(command).startsWith("lagg tpchunk")) {
if (noSlash(base).equals("tp") || noSlash(base).equals("teleport") || noSlash(command).startsWith("lagg tpchunk")) {
//If the user is in the confirm tp map, remove them and let the command run
if (command.equals(confirmTpMap.get(sender.getUniqueId()))) {
confirmTpMap.remove(sender.getUniqueId());