2 Commits

Author SHA1 Message Date
572df90645 Fix email attachment collisions causing email send failure (#312) 2025-12-07 16:38:46 -08:00
FinnHornhoover
8d0587dd45 increase mob group offset to avoid collisions (#311) 2025-12-06 16:31:27 -08:00

View File

@@ -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;