diff --git a/server/gameserver/metamgr.cc b/server/gameserver/metamgr.cc index 9fa2f55..35f448d 100755 --- a/server/gameserver/metamgr.cc +++ b/server/gameserver/metamgr.cc @@ -95,18 +95,20 @@ public: { if (!f8::IsOnlineEnv()) { if (f8::IsTestEnv()) { - res_path = a8::Format("/root/pub/%d/%d/conf_test/game%d/gameserver.test/res/", + res_path = a8::Format("/root/pub/%d/%d/conf_test/game%d/gameserver.test/res%d/", { GAME_ID, App::Instance()->instance_id, - GAME_ID + GAME_ID, + App::Instance()->instance_id }); } else { - res_path = a8::Format("/root/pub/%d/%d/conf_test/game%d/gameserver.dev/res/", + res_path = a8::Format("/root/pub/%d/%d/conf_test/game%d/gameserver.dev/res%d/", { GAME_ID, App::Instance()->instance_id, - GAME_ID + GAME_ID, + App::Instance()->instance_id }); } } else {