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:
tkrokli
2016-10-08 05:43:51 +02:00
parent 015bc75d75
commit 50016bf996

View File

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