This commit is contained in:
aozhiwei 2023-06-18 14:49:50 +08:00
parent 924ae0c500
commit 582601c836
2 changed files with 2 additions and 1 deletions

View File

@ -503,7 +503,7 @@ bool App::ParseOpt()
std::string App::NewUuid()
{
std::string id = a8::Format("%d%d", {zone_id, uuid.Generate()});
std::string id = a8::Format("%d%d", {100 + zone_id, uuid.Generate()});
return id;
}

View File

@ -523,6 +523,7 @@ const int SPEC3_SLOT_BEGIN = 9; //c4 盾墙 信号抢 汽油桶
const int FIGHTING_MODE_BULLET_NUM = 10000 * 10000;
const int MAX_ZONE_ID = 100;
const int MAX_NODE_ID = 8;
const int MAX_INSTANCE_ID = 500;