summaryrefslogtreecommitdiffstats
path: root/Essentials/src/com/earth2me/essentials/commands/Commandtempban.java
diff options
context:
space:
mode:
authorementalo <ementalo@e251c2fe-e539-e718-e476-b85c1f46cddb>2011-05-02 22:30:48 +0000
committerementalo <ementalo@e251c2fe-e539-e718-e476-b85c1f46cddb>2011-05-02 22:30:48 +0000
commit9b5b0cdcd73c56b415ade7b93cd0b742c4a1ce2d (patch)
treed33522c44f2c13a195f7b5d353c9ed7766b4cf84 /Essentials/src/com/earth2me/essentials/commands/Commandtempban.java
parent86478459bac01ddf1388cd0a2eb2487a4295a89f (diff)
downloadEssentials-9b5b0cdcd73c56b415ade7b93cd0b742c4a1ce2d.tar
Essentials-9b5b0cdcd73c56b415ade7b93cd0b742c4a1ce2d.tar.gz
Essentials-9b5b0cdcd73c56b415ade7b93cd0b742c4a1ce2d.tar.lz
Essentials-9b5b0cdcd73c56b415ade7b93cd0b742c4a1ce2d.tar.xz
Essentials-9b5b0cdcd73c56b415ade7b93cd0b742c4a1ce2d.zip
[trunk] word spacing on mute / tempban
git-svn-id: https://svn.java.net/svn/essentials~svn/trunk@1322 e251c2fe-e539-e718-e476-b85c1f46cddb
Diffstat (limited to 'Essentials/src/com/earth2me/essentials/commands/Commandtempban.java')
-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 f761bd53f..9deaa6c00 100644
--- a/Essentials/src/com/earth2me/essentials/commands/Commandtempban.java
+++ b/Essentials/src/com/earth2me/essentials/commands/Commandtempban.java
@@ -41,7 +41,7 @@ public class Commandtempban extends EssentialsCommand
long banTimestamp = Util.parseDateDiff(time, true);
p = ess.getUser(server.matchPlayer(args[0]).get(0));
- String banReason = "Temporary banned from server for " + Util.formatDateDiff(banTimestamp);
+ String banReason = "Temporarily banned from server for " + Util.formatDateDiff(banTimestamp);
p.setBanReason(banReason);
p.setBanTimeout(banTimestamp);
p.kickPlayer(banReason);