diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-08-15 19:46:48 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-08-15 23:35:48 +0300 |
commit | 243932ef169949917f17d3107e00f97886da0a14 (patch) | |
tree | 8f11d6e99b250ff480a32b04ea3bbb0ce9bc7f14 /src/being/being.cpp | |
parent | 3658d5a5564db6f0854ec9378c485aef8acc8992 (diff) | |
download | plus-243932ef169949917f17d3107e00f97886da0a14.tar.gz plus-243932ef169949917f17d3107e00f97886da0a14.tar.bz2 plus-243932ef169949917f17d3107e00f97886da0a14.tar.xz plus-243932ef169949917f17d3107e00f97886da0a14.zip |
Fix code style.
Diffstat (limited to 'src/being/being.cpp')
-rw-r--r-- | src/being/being.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/being/being.cpp b/src/being/being.cpp index a47738868..8baab8a44 100644 --- a/src/being/being.cpp +++ b/src/being/being.cpp @@ -2911,6 +2911,12 @@ std::string Being::loadComment(const std::string &name, case ActorType::NPC: str = settings.npcsDir; break; + case ActorType::UNKNOWN: + case ActorType::MONSTER: + case ActorType::FLOOR_ITEM: + case ActorType::PORTAL: + case ActorType::PET: + case ActorType::AVATAR: default: return ""; } |