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
commit62b354a989e3023d8463d1309d941cbaf776a5f3 (patch)
treeb6ed16cb4061441464abb750be700d50484172f2
parent0fb981a56d9d8ebf82ec66dd8d8999e4d9ab74d1 (diff)
downloadEssentials-62b354a989e3023d8463d1309d941cbaf776a5f3.tar
Essentials-62b354a989e3023d8463d1309d941cbaf776a5f3.tar.gz
Essentials-62b354a989e3023d8463d1309d941cbaf776a5f3.tar.lz
Essentials-62b354a989e3023d8463d1309d941cbaf776a5f3.tar.xz
Essentials-62b354a989e3023d8463d1309d941cbaf776a5f3.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"));
}