diff --git a/Source/Game/Spells/Spell.cs b/Source/Game/Spells/Spell.cs index 21047d221..e115058f8 100644 --- a/Source/Game/Spells/Spell.cs +++ b/Source/Game/Spells/Spell.cs @@ -6165,7 +6165,7 @@ namespace Game.Spells if (spellEffectInfo.ItemType != 0) { List dest = new(); - InventoryResult msg = target.ToPlayer().CanStoreNewItem(ItemConst.NullBag, ItemConst.NullSlot, dest, spellEffectInfo.ItemType, 1); + InventoryResult msg = target.ToPlayer().CanStoreNewItem(ItemConst.NullBag, ItemConst.NullSlot, dest, spellEffectInfo.ItemType, spellEffectInfo.CalcValue()); if (msg != InventoryResult.Ok) { ItemTemplate itemTemplate = Global.ObjectMgr.GetItemTemplate(spellEffectInfo.ItemType);