From dc8df44f03fb2474a80450d1686442d304315cf9 Mon Sep 17 00:00:00 2001 From: "Jamie (Lexteam)" Date: Sat, 8 Nov 2014 21:53:29 +0000 Subject: [PATCH] Bug fix, version 0.25. --- pom.xml | 2 +- .../unomodding/canary/playtimelimiter/PlayTimeCommands.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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();