diff --git a/src/game/Player.cpp b/src/game/Player.cpp index f4bd869a1..c8ee02338 100644 --- a/src/game/Player.cpp +++ b/src/game/Player.cpp @@ -11437,6 +11437,7 @@ void Player::ApplyEnchantment(Item *item,EnchantmentSlot slot,bool apply, bool a if(!ignore_condition && pEnchant->EnchantmentCondition && !((Player*)this)->EnchantmentFitsRequirements(pEnchant->EnchantmentCondition, -1)) return; + if (!item->IsBroken()) for (int s=0; s<3; s++) { uint32 enchant_display_type = pEnchant->type[s]; diff --git a/src/shared/revision_nr.h b/src/shared/revision_nr.h index 20307b982..6105c19b7 100644 --- a/src/shared/revision_nr.h +++ b/src/shared/revision_nr.h @@ -1,4 +1,4 @@ #ifndef __REVISION_NR_H__ #define __REVISION_NR_H__ - #define REVISION_NR "7734" + #define REVISION_NR "7735" #endif // __REVISION_NR_H__