FULLPIPE: Fix logical error. CID 1086778
This commit is contained in:
parent
3cce3f9a91
commit
6ca4b7d514
1 changed files with 1 additions and 1 deletions
|
@ -424,7 +424,7 @@ bool CInteraction::canInteract(GameObject *obj1, GameObject *obj2, int invId) {
|
|||
return false;
|
||||
|
||||
if ((_flags & 8) && (_flags & 1)) {
|
||||
if (!obj2->_objtype != kObjTypeStaticANIObject)
|
||||
if (obj2->_objtype != kObjTypeStaticANIObject)
|
||||
return false;
|
||||
|
||||
StaticANIObject *st = (StaticANIObject *)obj2;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue