diff --git a/server/gameserver/mapmgr.cc b/server/gameserver/mapmgr.cc index cb4624e..9ab4411 100644 --- a/server/gameserver/mapmgr.cc +++ b/server/gameserver/mapmgr.cc @@ -19,6 +19,12 @@ void MapMgr::Init() map_instance->Init(); instance_hash_[map_instance->map_id] = map_instance; } + if (MetaMgr::Instance()->GetMap(4001)) { + MapInstance* map_instance = new MapInstance(); + map_instance->map_id = 4001; + map_instance->Init(); + instance_hash_[map_instance->map_id] = map_instance; + } } void MapMgr::UnInit()