From 8d0587dd4510bbba236f11ab185ec00a5452adf2 Mon Sep 17 00:00:00 2001 From: FinnHornhoover <30576665+FinnHornhoover@users.noreply.github.com> Date: Sun, 7 Dec 2025 03:31:27 +0300 Subject: [PATCH] increase mob group offset to avoid collisions (#311) --- src/TableData.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/TableData.hpp b/src/TableData.hpp index 5f54071..c791ad9 100644 --- a/src/TableData.hpp +++ b/src/TableData.hpp @@ -12,7 +12,7 @@ // these are added to the NPC's static key to avoid collisions const int NPC_ID_OFFSET = 1; const int MOB_ID_OFFSET = 10000; -const int MOB_GROUP_ID_OFFSET = 20000; +const int MOB_GROUP_ID_OFFSET = 30000; // typedef for JSON object because I don't want to type nlohmann::json every time typedef nlohmann::json json;