diff options
author | Andrei Karas <akaras@inbox.ru> | 2016-07-24 21:41:24 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2016-07-24 21:41:24 +0300 |
commit | 945d6cb24be531885c5c2a4e676be9bc330a4afa (patch) | |
tree | f8ad769cc6b3f4a5034659c6a7d7c55a5b71d467 | |
parent | be513302d41da31a69f4661bab67b930612db967 (diff) | |
download | plus-945d6cb24be531885c5c2a4e676be9bc330a4afa.tar.gz plus-945d6cb24be531885c5c2a4e676be9bc330a4afa.tar.bz2 plus-945d6cb24be531885c5c2a4e676be9bc330a4afa.tar.xz plus-945d6cb24be531885c5c2a4e676be9bc330a4afa.zip |
Fix wrong assert for portals.
-rw-r--r-- | src/being/being.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/being/being.cpp b/src/being/being.cpp index 04dc00025..935c2112c 100644 --- a/src/being/being.cpp +++ b/src/being/being.cpp @@ -509,9 +509,10 @@ void Being::setSubtype(const BeingTypeId subtype, } break; } + case ActorType::Portal: + break; case ActorType::Unknown: case ActorType::FloorItem: - case ActorType::Portal: default: reportAlways("Wrong being type %d in setSubType", CAST_S32(mType)); |