diff options
Diffstat (limited to 'engines')
| -rw-r--r-- | engines/hdb/ai-waypoint.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/hdb/ai-waypoint.cpp b/engines/hdb/ai-waypoint.cpp index dac332863b..cbc9e9efc2 100644 --- a/engines/hdb/ai-waypoint.cpp +++ b/engines/hdb/ai-waypoint.cpp @@ -398,7 +398,7 @@ bool AI::traceStraightPath(int x1, int y1, int *x2, int *y2, int *level) { // if it's blocking, is it rad or plasma? (might be melted stuff on it) if (!ok) { ok = ((flags & kFlagPlasmaFloor) == kFlagPlasmaFloor) + - ((flags & kFlagPlasmaFloor) == kFlagRadFloor); + ((flags & kFlagRadFloor) == kFlagRadFloor); e = findEntity(x1, y1); if (e && g_hdb->_ai->walkThroughEnt(e->type)) entOK = 1; |
