diff options
Diffstat (limited to 'src/being/playerinfo.cpp')
-rw-r--r-- | src/being/playerinfo.cpp | 14 |
1 files changed, 5 insertions, 9 deletions
diff --git a/src/being/playerinfo.cpp b/src/being/playerinfo.cpp index 359069471..4f7b714cf 100644 --- a/src/being/playerinfo.cpp +++ b/src/being/playerinfo.cpp @@ -370,17 +370,13 @@ void setTrading(const bool trading) void updateAttrs() { - const Net::PlayerHandler *const handler = playerHandler; - if (!handler) - return; - const int attr = handler->getAttackLocation(); const int attackDelay = getStatBase(Attributes::ATTACK_DELAY); - if (attr != -1 && attackDelay) + if (attackDelay) { - setStatBase(Attributes::ATTACK_SPEED, getStatBase(attr) * 1000 - / attackDelay, false); - setStatMod(Attributes::ATTACK_SPEED, getStatMod(attr) * 1000 - / attackDelay, true); + setStatBase(Attributes::ATTACK_SPEED, + getStatBase(Attributes::ATK) * 1000 / attackDelay, false); + setStatMod(Attributes::ATTACK_SPEED, + getStatMod(Attributes::ATK) * 1000 / attackDelay, true); } else { |