diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-09-21 18:03:23 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-09-21 18:03:23 +0300 |
commit | 42bd653a5932f2fb38fc8e3c3a09286ddac20761 (patch) | |
tree | 4070e01fbb3155496e92ddb8f2f4cf2a8fa90079 | |
parent | 94e909f4ae557eea6f2cc7737d14c46968920b18 (diff) | |
download | plus-42bd653a5932f2fb38fc8e3c3a09286ddac20761.tar.gz plus-42bd653a5932f2fb38fc8e3c3a09286ddac20761.tar.bz2 plus-42bd653a5932f2fb38fc8e3c3a09286ddac20761.tar.xz plus-42bd653a5932f2fb38fc8e3c3a09286ddac20761.zip |
Fix compilation warning.
-rw-r--r-- | src/net/eathena/beinghandler.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/net/eathena/beinghandler.cpp b/src/net/eathena/beinghandler.cpp index 9707475da..0f924d5f4 100644 --- a/src/net/eathena/beinghandler.cpp +++ b/src/net/eathena/beinghandler.cpp @@ -319,6 +319,7 @@ Being *BeingHandler::createBeing2(const int id, case BeingType::CHAT: case BeingType::PET: case BeingType::HOMUN: + default: type = ActorType::Monster; logger->log("not supported object type: %d, job: %d", static_cast<int>(beingType), static_cast<int>(job)); |