diff options
author | shennetsind <ind@henn.et> | 2013-09-28 14:54:45 -0300 |
---|---|---|
committer | shennetsind <ind@henn.et> | 2013-09-28 14:54:45 -0300 |
commit | 07eba3971b99c979949c6002109897c07234fc64 (patch) | |
tree | de95c0e4ee9f59ca8e0f9a410fca18ecc4fea3c6 /src/map/map.c | |
parent | f966d2fa8c5249dfbab11658849aebed16204017 (diff) | |
download | hercules-07eba3971b99c979949c6002109897c07234fc64.tar.gz hercules-07eba3971b99c979949c6002109897c07234fc64.tar.bz2 hercules-07eba3971b99c979949c6002109897c07234fc64.tar.xz hercules-07eba3971b99c979949c6002109897c07234fc64.zip |
HPM: Party.c Completed
Moved missing vars and declarations of interest into the interface, removed duplicate mentions of party within calls to shorten wherever it made sense to, and renamed some members to ease reading.
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 37f0817c4..5c973889e 100644 --- a/src/map/map.c +++ b/src/map/map.c @@ -4907,7 +4907,7 @@ void do_final(void) instance->final(); gstorage->final(); guild->final(); - party->do_final_party(); + party->final(); pc->do_final_pc(); pet->final(); mob->final(); @@ -5387,7 +5387,7 @@ int do_init(int argc, char *argv[]) mob->init(); pc->do_init_pc(); status->init(); - party->do_init_party(); + party->init(); guild->init(); gstorage->init(); pet->init(); |