diff --git a/scripts/critter.pex b/scripts/critter.pex index 9496dd9bf..006b70eae 100644 Binary files a/scripts/critter.pex and b/scripts/critter.pex differ diff --git a/source/scripts/critter.psc b/source/scripts/critter.psc index 905bf2fcc..7b59385cf 100644 --- a/source/scripts/critter.psc +++ b/source/scripts/critter.psc @@ -1136,22 +1136,17 @@ endFunction /; Bool Function CheckCellAttached(ObjectReference AnyItemRef) - return bAttached && AnyItemRef - -;/ - if ! bAttached || ! AnyItemRef + if ! AnyItemRef return false endif Cell parentCell = AnyItemRef.GetParentCell() as Cell If parentCell == None - ;~ Trace(Self + "CheckCellAttached() " + AnyItemRef + " GetParentCell == None") return False EndIf - + Return parentCell.IsAttached() -/; EndFunction