瀏覽代碼

Fixed exploit where you could teleport to yourself...

GJ 13 年之前
父節點
當前提交
e3803702c5
共有 1 個文件被更改,包括 5 次插入1 次删除
  1. 5 1
      src/main/java/com/gmail/nossr50/commands/party/PtpCommand.java

+ 5 - 1
src/main/java/com/gmail/nossr50/commands/party/PtpCommand.java

@@ -51,6 +51,10 @@ public class PtpCommand implements CommandExecutor {
 
             Player target = plugin.getServer().getPlayer(args[0]);
 
+            if (player.equals(target)) {
+                player.sendMessage("You can't teleport to yourself!"); //TODO: Use locale
+            }
+
             if (target == null) {
                 player.sendMessage(mcLocale.getString("Party.Teleport.Invalid"));
                 return true;
@@ -85,4 +89,4 @@ public class PtpCommand implements CommandExecutor {
             return true;
         }
    }
-}
+}