Skip to content

Commit

Permalink
Bug fix, version 0.25.
Browse files Browse the repository at this point in the history
  • Loading branch information
jamierocks committed Nov 8, 2014
1 parent a27554c commit dc8df44
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<name>PlayTimeLimiter</name>
<url>https://github.com/UnoModding/Canary-PlayTimeLimiter</url>
<description>PlayTimeLimiter is a CanaryMod plugin for Minecraft servers to only allow players to limit the amount of time players spent on your server.</description>
<version>0.2</version>
<version>0.25</version>
<inceptionYear>2014</inceptionYear>

<repositories>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ public void removeCommand(MessageReceiver caller, String[] args) {
try {
plugin.removePlayTime(Canary.getServer().getPlayer(args[0]).getUUIDString(),
Integer.parseInt(args[1]));
caller.message(TextFormat.GREEN + "Added " + Integer.parseInt(args[1])
caller.message(TextFormat.GREEN + "Removed " + Integer.parseInt(args[1])
+ " seconds of playtime from " + args[0]);
} catch (NumberFormatException e) {
e.printStackTrace();
Expand Down

0 comments on commit dc8df44

Please sign in to comment.