diff options
author | Andrei Karas <akaras@inbox.ru> | 2017-06-09 00:18:08 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2017-06-09 00:18:08 +0300 |
commit | c6ac11341bd99cbe5eeb4275b9b2473e21338d5e (patch) | |
tree | bb7589c232ad54bfd037ae016ee0991342ebccfa /src/actions | |
parent | 9f1470325518a8ee5b6c0c2c1254ab4dccac0f63 (diff) | |
download | mv-c6ac11341bd99cbe5eeb4275b9b2473e21338d5e.tar.gz mv-c6ac11341bd99cbe5eeb4275b9b2473e21338d5e.tar.bz2 mv-c6ac11341bd99cbe5eeb4275b9b2473e21338d5e.tar.xz mv-c6ac11341bd99cbe5eeb4275b9b2473e21338d5e.zip |
Fix code style.
Diffstat (limited to 'src/actions')
-rw-r--r-- | src/actions/actions.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/actions/actions.cpp b/src/actions/actions.cpp index 176495a18..e9bf8b110 100644 --- a/src/actions/actions.cpp +++ b/src/actions/actions.cpp @@ -896,8 +896,11 @@ impHandler(targetAttack) { target = actorManager->findBeing(fromInt(atoi( args.substr(1).c_str()), BeingId)); - if ((target != nullptr) && target->getType() != ActorType::Monster) + if (target != nullptr && + target->getType() != ActorType::Monster) + { target = nullptr; + } } } |