summaryrefslogtreecommitdiff
path: root/src/map/instance.c
diff options
context:
space:
mode:
authorai4rei <ai4rei@54d463be-8e91-2dee-dedb-b68131a5f0ec>2011-07-02 10:33:38 +0000
committerai4rei <ai4rei@54d463be-8e91-2dee-dedb-b68131a5f0ec>2011-07-02 10:33:38 +0000
commit179b9771be97e87168b39799bdbf82767d46fc45 (patch)
tree5b4888426c7d4d9fb879ef1b894d4dc1b92ea6b4 /src/map/instance.c
parent0361920446e9311979b5187abf123ba8e055d944 (diff)
downloadhercules-179b9771be97e87168b39799bdbf82767d46fc45.tar.gz
hercules-179b9771be97e87168b39799bdbf82767d46fc45.tar.bz2
hercules-179b9771be97e87168b39799bdbf82767d46fc45.tar.xz
hercules-179b9771be97e87168b39799bdbf82767d46fc45.zip
* Random updates to instance system.
- Introduced a constant for instance name length. - Corrected comments related to instance packets 0x2cb (ZC_MEMORIALDUNGEON_SUBSCRIPTION_INFO) and 0x2ce (ZC_MEMORIALDUNGEON_NOTIFY). - Moved instance finalization out of map.c into instance.c git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@14878 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/instance.c')
-rw-r--r--src/map/instance.c10
1 files changed, 9 insertions, 1 deletions
diff --git a/src/map/instance.c b/src/map/instance.c
index 836543891..fecbe41f7 100644
--- a/src/map/instance.c
+++ b/src/map/instance.c
@@ -220,7 +220,7 @@ void instance_init(int instance_id)
for( i = 0; i < instance[instance_id].num_map; i++ )
map_foreachinmap(instance_map_npcsub, map[instance[instance_id].map[i]].instance_src_map, BL_NPC, instance[instance_id].map[i]);
- instance[instance_id].state = INSTANCE_BUSSY;
+ instance[instance_id].state = INSTANCE_BUSY;
ShowInfo("[Instance] Initialized %s.\n", instance[instance_id].name);
}
@@ -444,6 +444,14 @@ void instance_check_kick(struct map_session_data *sd)
}
}
+void do_final_instance(void)
+{
+ int i;
+
+ for( i = 1; i < MAX_INSTANCE; i++ )
+ instance_destroy(i);
+}
+
void do_init_instance(void)
{
memset(instance, 0x00, sizeof(instance));