diff options
author | Haru <haru@dotalux.com> | 2015-01-22 00:28:24 +0100 |
---|---|---|
committer | Haru <haru@dotalux.com> | 2015-01-24 14:37:25 +0100 |
commit | fc50b63d454f59620e0d3ef6674bd9ae54a6175f (patch) | |
tree | 35bcd04fd592a40aca634995cca3fe33031fc5c4 /src/map/instance.c | |
parent | a75714ca455c728d34918dd12200fcec87ebc0d4 (diff) | |
download | hercules-fc50b63d454f59620e0d3ef6674bd9ae54a6175f.tar.gz hercules-fc50b63d454f59620e0d3ef6674bd9ae54a6175f.tar.bz2 hercules-fc50b63d454f59620e0d3ef6674bd9ae54a6175f.tar.xz hercules-fc50b63d454f59620e0d3ef6674bd9ae54a6175f.zip |
Moved the Hercules Channel System to its own file/interface
Signed-off-by: Haru <haru@dotalux.com>
Diffstat (limited to 'src/map/instance.c')
-rw-r--r-- | src/map/instance.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/map/instance.c b/src/map/instance.c index a2d363fc9..dd5709452 100644 --- a/src/map/instance.c +++ b/src/map/instance.c @@ -13,6 +13,7 @@ #include <time.h> #include "../config/core.h" // CELL_NOSTACK +#include "channel.h" #include "clif.h" #include "map.h" #include "npc.h" @@ -483,7 +484,7 @@ void instance_del_map(int16 m) { ShowError("map_instance_del: failed to remove %s from instance list (%s): %d\n", map->list[m].name, instance->list[map->list[m].instance_id].name, m); if( map->list[m].channel ) - clif->chsys_delete(map->list[m].channel); + channel->delete(map->list[m].channel); map->removemapdb(&map->list[m]); memset(&map->list[m], 0x00, sizeof(map->list[0])); |