diff --git a/pom.xml b/pom.xml
index 8c8e918..aa05076 100644
--- a/pom.xml
+++ b/pom.xml
@@ -9,7 +9,7 @@
PlayTimeLimiter
https://github.com/UnoModding/Canary-PlayTimeLimiter
PlayTimeLimiter is a CanaryMod plugin for Minecraft servers to only allow players to limit the amount of time players spent on your server.
- 0.2
+ 0.25
2014
diff --git a/src/main/java/unomodding/canary/playtimelimiter/PlayTimeCommands.java b/src/main/java/unomodding/canary/playtimelimiter/PlayTimeCommands.java
index 17d2e81..57dbdf7 100644
--- a/src/main/java/unomodding/canary/playtimelimiter/PlayTimeCommands.java
+++ b/src/main/java/unomodding/canary/playtimelimiter/PlayTimeCommands.java
@@ -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();