ASYLUM: fix a race in UpdateActor opcode

This unblocks the odd state in Chapter 3 found by digitall
This commit is contained in:
alxpnv 2021-06-07 14:41:32 +03:00
parent 7a7a98baae
commit abc56853eb

View File

@ -972,6 +972,10 @@ IMPLEMENT_OPCODE(UpdateActor)
_processNextEntry = true;
return;
case kActorStatusEnabled:
case kActorStatusEnabled2:
return;
case kActorStatusPickupItem:
actor->enable();
break;