summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNecrodoom <doomed.war@gmail.com>2012-12-28 19:05:54 +0200
committerNecrodoom <doomed.war@gmail.com>2012-12-28 19:05:54 +0200
commit1f98fe710f4649f27789dddbfdbc380e7b01583f (patch)
tree0b64876f9149281b5329493fcdbb890917acdba0
parent4bb275e1b7ed878e608bd558d7d482299a6ebea8 (diff)
downloadEssentials-1f98fe710f4649f27789dddbfdbc380e7b01583f.tar
Essentials-1f98fe710f4649f27789dddbfdbc380e7b01583f.tar.gz
Essentials-1f98fe710f4649f27789dddbfdbc380e7b01583f.tar.lz
Essentials-1f98fe710f4649f27789dddbfdbc380e7b01583f.tar.xz
Essentials-1f98fe710f4649f27789dddbfdbc380e7b01583f.zip
derp - fix tempban permission check
-rw-r--r--Essentials/src/com/earth2me/essentials/commands/Commandtempban.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/Essentials/src/com/earth2me/essentials/commands/Commandtempban.java b/Essentials/src/com/earth2me/essentials/commands/Commandtempban.java
index 97aa2ea3b..fd959472c 100644
--- a/Essentials/src/com/earth2me/essentials/commands/Commandtempban.java
+++ b/Essentials/src/com/earth2me/essentials/commands/Commandtempban.java
@@ -47,7 +47,7 @@ public class Commandtempban extends EssentialsCommand
final long banTimestamp = Util.parseDateDiff(time, true);
final long maxBanLength = ess.getSettings().getMaxTempban() * 1000;
- if(maxBanLength > 0 && ((banTimestamp - GregorianCalendar.getInstance().getTimeInMillis()) > maxBanLength) && ess.getUser(sender).isAuthorized("essentials.tempban.unlimited"))
+ if(maxBanLength > 0 && ((banTimestamp - GregorianCalendar.getInstance().getTimeInMillis()) > maxBanLength) && !(ess.getUser(sender).isAuthorized("essentials.tempban.unlimited")))
{
sender.sendMessage(_("oversizedTempban"));
throw new NoChargeException();