diff --git a/Tibbuhs/Tibbuhs/PotionManager.cs b/Tibbuhs/Tibbuhs/PotionManager.cs index 48ad4ae..3007801 100644 --- a/Tibbuhs/Tibbuhs/PotionManager.cs +++ b/Tibbuhs/Tibbuhs/PotionManager.cs @@ -106,7 +106,7 @@ private void OnGameUpdate(EventArgs args) { var healthSlot = GetPotionSlot(PotionType.Health); if (!IsBuffActive(PotionType.Health)) - healthSlot.UseItem(); + ObjectManager.Player.Spellbook.CastSpell(healthSlot.SpellSlot); } } if (ExtrasMenu.Item("ManaPotion").GetValue()) @@ -115,7 +115,7 @@ private void OnGameUpdate(EventArgs args) { var manaSlot = GetPotionSlot(PotionType.Mana); if (!IsBuffActive(PotionType.Mana)) - manaSlot.UseItem(); + ObjectManager.Player.Spellbook.CastSpell(manaSlot.SpellSlot); } } }