diff options
author | Andrei Karas <akaras@inbox.ru> | 2016-02-21 19:30:40 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2016-02-21 19:30:40 +0300 |
commit | f3ac812e2079eac53c1a9db56541d7103bd14a61 (patch) | |
tree | 3a9a9e9deebdbbb44da32ad4b1656743c4ff80c1 /src/being | |
parent | f61f794776fd37223c0977437a6bfcfef6759f84 (diff) | |
download | plus-f3ac812e2079eac53c1a9db56541d7103bd14a61.tar.gz plus-f3ac812e2079eac53c1a9db56541d7103bd14a61.tar.bz2 plus-f3ac812e2079eac53c1a9db56541d7103bd14a61.tar.xz plus-f3ac812e2079eac53c1a9db56541d7103bd14a61.zip |
Fix code style.
Diffstat (limited to 'src/being')
-rw-r--r-- | src/being/being.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/being/being.cpp b/src/being/being.cpp index ce16f9ff4..a1163b1b7 100644 --- a/src/being/being.cpp +++ b/src/being/being.cpp @@ -851,8 +851,8 @@ int Being::getHitEffect(const Being *restrict const attacker, int hitEffectId = 0; if (type == AttackType::SKILL || type == AttackType::SKILLMISS) { - const SkillData *restrict const data = skillDialog->getSkillDataByLevel( - attackId, level); + const SkillData *restrict const data = + skillDialog->getSkillDataByLevel(attackId, level); if (!data) return -1; if (type == AttackType::SKILL) |