Has the PathShapeData constructor proper initialize the mUseEase var which prevents the datablock CRC cache from failing to match.

This commit is contained in:
JeffR 2026-05-18 00:24:54 -05:00
parent 275bf3cd94
commit 0c75b7ece5

View file

@ -27,6 +27,11 @@
IMPLEMENT_CO_DATABLOCK_V1(PathShapeData);
PathShapeData::PathShapeData()
{
mUseEase = false;
}
void PathShapeData::consoleInit()
{
}
@ -143,11 +148,6 @@ bool PathShape::onNewDataBlock(GameBaseData* dptr, bool reload)
return true;
}
PathShapeData::PathShapeData()
{
}
//----------------------------------------------------------------------------
void PathShape::initPersistFields()