- Fixed: Inventory's AltHUDIcon must be initialized to null, not invalid.

SVN r3912 (scripting)
This commit is contained in:
Randy Heit 2012-10-27 01:37:10 +00:00
parent 110c253854
commit 5b8a54e5ee

View file

@ -27,7 +27,7 @@ IMPLEMENT_CLASS(PClassInventory)
PClassInventory::PClassInventory()
{
GiveQuest = 0;
AltHUDIcon.SetInvalid();
AltHUDIcon.SetNull();
}
void PClassInventory::Derive(PClass *newclass)