diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/game/Player.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game/Player.cpp b/src/game/Player.cpp index 7099b7e3945..2ffd1a8fb58 100644 --- a/src/game/Player.cpp +++ b/src/game/Player.cpp @@ -6489,7 +6489,7 @@ void Player::_ApplyItemMods(Item *item, uint8 slot,bool apply) return; // not apply mods for broken item - if(item->IsBroken() && apply) + if(item->IsBroken()) return; ItemPrototype const *proto = item->GetProto(); |