mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-16 07:30:42 +01:00
Core/DataStores: TaxiMaskSize not large enough
Increase TaxiMaskSize to repair this startup error: src\server\game\DataStores\DB2Stores.cpp:844 in DB2Manager::LoadStores ASSERTION FAILED: TaxiMaskSize >= ((sTaxiNodesStore.GetNumRows() - 1) / 8) + 1 TaxiMaskSize is not large enough to contain all taxi nodes! (current value 236, required 239) Closes #18055
This commit is contained in:
@@ -746,7 +746,7 @@ enum SpellShapeshiftFormFlags
|
||||
SHAPESHIFT_FORM_PREVENT_EMOTE_SOUNDS = 0x1000
|
||||
};
|
||||
|
||||
#define TaxiMaskSize 236
|
||||
#define TaxiMaskSize 239
|
||||
typedef std::array<uint8, TaxiMaskSize> TaxiMask;
|
||||
|
||||
enum TotemCategoryType
|
||||
|
||||
Reference in New Issue
Block a user