diff --git a/core/src/main/java/com/boydti/fawe/command/Reload.java b/core/src/main/java/com/boydti/fawe/command/Reload.java index f6ac7709..7818c39e 100644 --- a/core/src/main/java/com/boydti/fawe/command/Reload.java +++ b/core/src/main/java/com/boydti/fawe/command/Reload.java @@ -35,7 +35,7 @@ public class Reload extends FaweCommand { MainUtil.sendMessage(player, "No version information available."); return false; } - Date date = new GregorianCalendar(2000 + version.year - 1, version.month - 1, version.day).getTime(); + Date date = new GregorianCalendar(2000 + version.year, version.month - 1, version.day).getTime(); MainUtil.sendMessage(player, "Version Date: " + date.toLocaleString()); MainUtil.sendMessage(player, "Version Commit: " + Integer.toHexString(version.hash)); MainUtil.sendMessage(player, "Version Build: #" + version.build);