diff options
author | Andrei Karas <akaras@inbox.ru> | 2017-07-04 21:12:56 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2017-07-04 21:12:56 +0300 |
commit | b214e2da42e33d4deadef21f3fe74666fe33e82f (patch) | |
tree | 28f1bcf44ea3fb220ba87cd2f7fa98ec4515751a /src/being/being.cpp | |
parent | b69b4f24bac92621ad308330bd690a205de5d75a (diff) | |
download | plus-b214e2da42e33d4deadef21f3fe74666fe33e82f.tar.gz plus-b214e2da42e33d4deadef21f3fe74666fe33e82f.tar.bz2 plus-b214e2da42e33d4deadef21f3fe74666fe33e82f.tar.xz plus-b214e2da42e33d4deadef21f3fe74666fe33e82f.zip |
Fix wrong error in Being::setAction.
Diffstat (limited to 'src/being/being.cpp')
-rw-r--r-- | src/being/being.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/being/being.cpp b/src/being/being.cpp index bcc3f7d81..b281919f3 100644 --- a/src/being/being.cpp +++ b/src/being/being.cpp @@ -1588,6 +1588,7 @@ void Being::setAction(const BeingActionT &restrict action, currentAction = getSpawnAction(); break; case BeingAction::PRESTAND: + break; default: logger->log("Being::setAction unknown action: " + toString(CAST_U32(action))); |