diff options
author | shennetsind <ind@henn.et> | 2013-09-28 12:25:07 -0300 |
---|---|---|
committer | shennetsind <ind@henn.et> | 2013-09-28 12:25:07 -0300 |
commit | f63b6a94ea8e3a8ad877ad401c6aff1eb4e1d45d (patch) | |
tree | 987af201029e651a580fd12d956d6dcb52a543cf /src/map/map.c | |
parent | 346ea5f138e5baee36cf1e986c12fff84277f4ca (diff) | |
download | hercules-f63b6a94ea8e3a8ad877ad401c6aff1eb4e1d45d.tar.gz hercules-f63b6a94ea8e3a8ad877ad401c6aff1eb4e1d45d.tar.bz2 hercules-f63b6a94ea8e3a8ad877ad401c6aff1eb4e1d45d.tar.xz hercules-f63b6a94ea8e3a8ad877ad401c6aff1eb4e1d45d.zip |
HPM: Storage.c Completed
Moved missing declarations of interest into the interface, init/final from storage into gstorage
Signed-off-by: shennetsind <ind@henn.et>
Diffstat (limited to 'src/map/map.c')
-rw-r--r-- | src/map/map.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/map/map.c b/src/map/map.c index 8641f7011..5d58fd30e 100644 --- a/src/map/map.c +++ b/src/map/map.c @@ -4905,7 +4905,7 @@ void do_final(void) script->final(); itemdb->final(); instance->final(); - storage->final(); + gstorage->final(); guild->final(); party->do_final_party(); pc->do_final_pc(); @@ -5389,7 +5389,7 @@ int do_init(int argc, char *argv[]) status->init(); party->do_init_party(); guild->init(); - storage->init(); + gstorage->init(); pet->init(); homun->init(); mercenary->init(); |