Added missing iNextLandTime archived variable

This commit is contained in:
smallmodel 2023-11-27 20:06:19 +01:00
parent 8fc5dacebf
commit 2cc47e10f9
No known key found for this signature in database
GPG key ID: 9F2D623CEDF08512
2 changed files with 8 additions and 0 deletions

View file

@ -2128,6 +2128,11 @@ void Sentient::Archive(Archiver& arc)
Holster(true);
}
}
//
// Openmohaa additions
//
arc.ArchiveInteger(&iNextLandTime);
}
static bool IsItemName(const char *name)

View file

@ -219,6 +219,9 @@ public:
bool m_bFootOnGround_Right;
bool m_bFootOnGround_Left;
//
// Openmohaa additions
//
int iNextLandTime;
CLASS_PROTOTYPE(Sentient);