summaryrefslogtreecommitdiff
path: root/src/map/map.c
diff options
context:
space:
mode:
authorshennetsind <ind@henn.et>2013-09-28 14:54:45 -0300
committershennetsind <ind@henn.et>2013-09-28 14:54:45 -0300
commit07eba3971b99c979949c6002109897c07234fc64 (patch)
treede95c0e4ee9f59ca8e0f9a410fca18ecc4fea3c6 /src/map/map.c
parentf966d2fa8c5249dfbab11658849aebed16204017 (diff)
downloadhercules-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.c4
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();