Explorar el Código

Fixed exploit where you could teleport to yourself...

GJ hace 13 años
padre
commit
e3803702c5

+ 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]);
             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) {
             if (target == null) {
                 player.sendMessage(mcLocale.getString("Party.Teleport.Invalid"));
                 player.sendMessage(mcLocale.getString("Party.Teleport.Invalid"));
                 return true;
                 return true;
@@ -85,4 +89,4 @@ public class PtpCommand implements CommandExecutor {
             return true;
             return true;
         }
         }
    }
    }
-}
+}