summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWolvereness <weswolf@aol.com>2012-02-09 23:14:57 -0600
committerWolvereness <weswolf@aol.com>2012-02-09 23:14:57 -0600
commit9efd0eb6f9f61b7063c469ec69148949c268a007 (patch)
tree502286a3951db6bb2f22f9dddf88d023ee3527a2
parentf0ee026fb97ac69822cd3f2f74b5e088ba7b3b66 (diff)
downloadEssentials-9efd0eb6f9f61b7063c469ec69148949c268a007.tar
Essentials-9efd0eb6f9f61b7063c469ec69148949c268a007.tar.gz
Essentials-9efd0eb6f9f61b7063c469ec69148949c268a007.tar.lz
Essentials-9efd0eb6f9f61b7063c469ec69148949c268a007.tar.xz
Essentials-9efd0eb6f9f61b7063c469ec69148949c268a007.zip
Fix exploit with /tpaccept if sender no longer has permission
-rw-r--r--Essentials/src/com/earth2me/essentials/commands/Commandtpaccept.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/Essentials/src/com/earth2me/essentials/commands/Commandtpaccept.java b/Essentials/src/com/earth2me/essentials/commands/Commandtpaccept.java
index 2e3e024a3..456a77c37 100644
--- a/Essentials/src/com/earth2me/essentials/commands/Commandtpaccept.java
+++ b/Essentials/src/com/earth2me/essentials/commands/Commandtpaccept.java
@@ -22,7 +22,7 @@ public class Commandtpaccept extends EssentialsCommand
final User target = user.getTeleportRequest();
if (target == null
|| target.getBase() instanceof OfflinePlayer
- || (user.isTeleportRequestHere() && !target.isAuthorized("essentials.tpahere")))
+ || (user.isTeleportRequestHere() ? !target.isAuthorized("essentials.tpahere") : !target.isAuthorized("essentials.tpa")))
{
throw new Exception(_("noPendingRequest"));
}