summaryrefslogtreecommitdiffstats
path: root/EssentialsGroupManager
diff options
context:
space:
mode:
authorElgarL <ElgarL@palmergames.com>2011-11-17 14:28:33 +0000
committerElgarL <ElgarL@palmergames.com>2011-11-17 14:28:33 +0000
commit7b7d1f557f193599222ca90e74a967b3c7c0fe3c (patch)
tree2073e5e0a7975e345e03a11680f8c5dae05bc7d5 /EssentialsGroupManager
parent022f7ab1d45492ce5cebba077cb4ffad8c637e9b (diff)
downloadEssentials-7b7d1f557f193599222ca90e74a967b3c7c0fe3c.tar
Essentials-7b7d1f557f193599222ca90e74a967b3c7c0fe3c.tar.gz
Essentials-7b7d1f557f193599222ca90e74a967b3c7c0fe3c.tar.lz
Essentials-7b7d1f557f193599222ca90e74a967b3c7c0fe3c.tar.xz
Essentials-7b7d1f557f193599222ca90e74a967b3c7c0fe3c.zip
Fixed a crash on reload due to bukkit not unloading plugins before
reloading.
Diffstat (limited to 'EssentialsGroupManager')
-rw-r--r--EssentialsGroupManager/src/Changelog.txt3
-rw-r--r--EssentialsGroupManager/src/org/anjocaido/groupmanager/GroupManager.java3
2 files changed, 5 insertions, 1 deletions
diff --git a/EssentialsGroupManager/src/Changelog.txt b/EssentialsGroupManager/src/Changelog.txt
index 6a7fd1795..e9e21d407 100644
--- a/EssentialsGroupManager/src/Changelog.txt
+++ b/EssentialsGroupManager/src/Changelog.txt
@@ -71,4 +71,5 @@ v 1.5:
You then MUST issue a '/mansave force' to overwrite the disc files, or a '/manload' to overwrite the memory data.
- Fix for an error in checkFullUserPermission caused by players disconnecting mid perms update.
- Notification of being moved to the default group only happens if it's a demotion/promotion (not on join).
- - Fixed GM holding files open and causing the time stamp to be incorrect. This caused GM to require a '/mansave force' when it shouldn't be needed. \ No newline at end of file
+ - Fixed GM holding files open and causing the time stamp to be incorrect. This caused GM to require a '/mansave force' when it shouldn't be needed.
+ - Fixed a crash on reload due to bukkit not unloading plugins before reloading. \ No newline at end of file
diff --git a/EssentialsGroupManager/src/org/anjocaido/groupmanager/GroupManager.java b/EssentialsGroupManager/src/org/anjocaido/groupmanager/GroupManager.java
index d2d8d3b27..d8b7a15e1 100644
--- a/EssentialsGroupManager/src/org/anjocaido/groupmanager/GroupManager.java
+++ b/EssentialsGroupManager/src/org/anjocaido/groupmanager/GroupManager.java
@@ -130,6 +130,9 @@ public class GroupManager extends JavaPlugin {
throw new IllegalStateException("An error ocurred while loading GroupManager");
}
+ // Set a few defaults (reloads)
+ setLoaded(false);
+
// Initialize the world listener and bukkit permissions to handle
// events.
WorldEvents = new GMWorldListener(this);