diff options
Diffstat (limited to 'src/emap/map.c')
-rw-r--r-- | src/emap/map.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/emap/map.c b/src/emap/map.c index 8f5c54f..7e43f8b 100644 --- a/src/emap/map.c +++ b/src/emap/map.c @@ -555,7 +555,7 @@ void map_alwaysVisible_send(TBL_PC *sd) } } -void edo_final_maps(void) +void map_clear_data(void) { int f; for (f = 0; f < map->count; f++) @@ -565,3 +565,8 @@ void edo_final_maps(void) VECTOR_CLEAR(data->npcs); } } + +void edo_final_maps(void) +{ + map_clear_data(); +} |