aboutsummaryrefslogtreecommitdiff
path: root/src/game/Player.cpp
diff options
context:
space:
mode:
authorQAston <none@none>2009-03-20 20:54:59 +0100
committerQAston <none@none>2009-03-20 20:54:59 +0100
commit7cd9a01954f6905dfb0e6a113b5799cc2442a39e (patch)
treef9f2f411be9f1b6436959d51d422f35577a2285a /src/game/Player.cpp
parenteddb72d1eaa21dfff850f7af56c3c59e0442d577 (diff)
Fix weapons speed.
--HG-- branch : trunk
Diffstat (limited to 'src/game/Player.cpp')
-rw-r--r--src/game/Player.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game/Player.cpp b/src/game/Player.cpp
index 1bacdfdd014..f168728108e 100644
--- a/src/game/Player.cpp
+++ b/src/game/Player.cpp
@@ -7052,7 +7052,7 @@ void Player::_ApplyItemBonuses(ItemPrototype const *proto, uint8 slot, bool appl
ApplyFeralAPBonus(feral_bonus, apply);
}
- if(!IsInFeralForm() || !CanUseAttackType(attType))
+ if(IsInFeralForm() || !CanUseAttackType(attType))
return;
if (proto->Delay)