- relaxed caller type check for states modified by Dehacked

https://forum.zdoom.org/viewtopic.php?t=63178
This commit is contained in:
alexey.lysiuk 2019-01-12 12:21:34 +02:00 committed by drfrag
parent a08bc271fa
commit 37ce3e90de

View file

@ -142,7 +142,7 @@ void FState::CheckCallerType(AActor *self, AActor *stateowner)
{
ThrowAbortException(X_OTHER, "%s called without valid caller. %s expected", ActionFunc->PrintableName.GetChars(), cls->TypeName.GetChars());
}
if (!check->IsKindOf(cls))
if (!(StateFlags & STF_DEHACKED) && !check->IsKindOf(cls))
{
ThrowAbortException(X_OTHER, "Invalid class %s in function call to %s. %s expected", check->GetClass()->TypeName.GetChars(), ActionFunc->PrintableName.GetChars(), cls->TypeName.GetChars());
}