diff options
author | shennetsind <shennetsind@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2012-07-18 21:13:40 +0000 |
---|---|---|
committer | shennetsind <shennetsind@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2012-07-18 21:13:40 +0000 |
commit | a9696317f3d9d94ee19b47ac4dff000f0a8775b5 (patch) | |
tree | c38e3726d0099209f0c620d7aeb4cb271e0caf2a /src/map/pc_groups.c | |
parent | 4328a8e9beba3b67008c3cae6ac91acf7bfa36c6 (diff) | |
download | hercules-a9696317f3d9d94ee19b47ac4dff000f0a8775b5.tar.gz hercules-a9696317f3d9d94ee19b47ac4dff000f0a8775b5.tar.bz2 hercules-a9696317f3d9d94ee19b47ac4dff000f0a8775b5.tar.xz hercules-a9696317f3d9d94ee19b47ac4dff000f0a8775b5.zip |
Fixed bugreport:6269 added a way to test files prior to @reloadatcommand so that if they fail to read the server doesn't get stuck with no atcommands (and no way to reload again since the reload is a atcommand…) also fixed a memory-release missing since the group.conf stuff was first added.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@16447 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/pc_groups.c')
-rw-r--r-- | src/map/pc_groups.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/pc_groups.c b/src/map/pc_groups.c index c6713fedf..a2bf5f0c5 100644 --- a/src/map/pc_groups.c +++ b/src/map/pc_groups.c @@ -96,7 +96,7 @@ static void read_config(void) return; groups = config_lookup(&pc_group_config, "groups"); - + if (groups != NULL) { GroupSettings *group_settings = NULL; DBIterator *iter = NULL; |