From ae1901ea25b56daf98e85c0c6a938dd244e15b11 Mon Sep 17 00:00:00 2001 From: ryanhamshire Date: Mon, 17 Nov 2014 19:50:15 -0800 Subject: [PATCH] Fix: /gpreload now actually works. Look at that typo! It accidentally matched an inherited method! Ha. :) --- src/me/ryanhamshire/GriefPrevention/GriefPrevention.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/me/ryanhamshire/GriefPrevention/GriefPrevention.java b/src/me/ryanhamshire/GriefPrevention/GriefPrevention.java index 6c683a4..f13d758 100644 --- a/src/me/ryanhamshire/GriefPrevention/GriefPrevention.java +++ b/src/me/ryanhamshire/GriefPrevention/GriefPrevention.java @@ -1954,7 +1954,7 @@ public class GriefPrevention extends JavaPlugin else if(cmd.getName().equalsIgnoreCase("gpreload")) { - this.reloadConfig(); + this.loadConfig(); if(player != null) { GriefPrevention.sendMessage(player, TextMode.Success, "Configuration updated. If you have updated your Grief Prevention JAR, you still need to /reload or reboot your server.");