diff --git a/src/items/tile.hpp b/src/items/tile.hpp index 83f0350f9aa..f3a4cc7c6b1 100644 --- a/src/items/tile.hpp +++ b/src/items/tile.hpp @@ -190,13 +190,12 @@ class Tile : public Cylinder, public SharedObject { return ZONE_PROTECTION; } else if (hasFlag(TILESTATE_NOPVPZONE)) { return ZONE_NOPVP; - } else if (hasFlag(TILESTATE_NOLOGOUT)) { - return ZONE_NOLOGOUT; } else if (hasFlag(TILESTATE_PVPZONE)) { return ZONE_PVP; - } else { - return ZONE_NORMAL; + } else if (hasFlag(TILESTATE_NOLOGOUT)) { + return ZONE_NOLOGOUT; } + return ZONE_NORMAL; } bool hasHeight(uint32_t n) const;