diff options
Diffstat (limited to 'engines')
-rw-r--r-- | engines/pink/objects/side_effect.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/pink/objects/side_effect.cpp b/engines/pink/objects/side_effect.cpp index 548a29f12f..7cdb2c9183 100644 --- a/engines/pink/objects/side_effect.cpp +++ b/engines/pink/objects/side_effect.cpp @@ -51,8 +51,8 @@ void SideEffectLocation::deserialize(Archive &archive) { void SideEffectLocation::execute(Actor *actor) { WalkMgr *mgr = actor->getPage()->getWalkMgr(); WalkLocation *location = mgr->findLocation(_location); - assert(location); - mgr->setCurrentWayPoint(location); + if (location) + mgr->setCurrentWayPoint(location); } void SideEffectLocation::toConsole() { |