4
Fork 0

Fixed IsAttached() Papyrus error spam in critter.psc

development
Eddoursul 4 months ago
parent f6650e6fd7
commit 68c68c6a3e
  1. BIN
      scripts/critter.pex
  2. 8
      source/scripts/critter.psc

Binary file not shown.

@ -1116,13 +1116,17 @@ endFunction
/;
Bool Function CheckCellAttached(ObjectReference AnyItemRef)
Cell parentCell = AnyItemRef.GetParentCell()
if AnyItemRef == None || ! AnyItemRef.Is3DLoaded()
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

Loading…
Cancel
Save