diff --git a/Items/Weapons/Ranged/FoxPistols/FoxPistol.cs b/Items/Weapons/Ranged/FoxPistols/FoxPistol.cs index 8a8adb7..621b074 100644 --- a/Items/Weapons/Ranged/FoxPistols/FoxPistol.cs +++ b/Items/Weapons/Ranged/FoxPistols/FoxPistol.cs @@ -83,7 +83,7 @@ public class FoxPistol : ModItem Item.damage = 22; Item.shoot = ModContent.ProjectileType(); } - return CanUseItem(player); + return base.CanUseItem(player); } public override void AddRecipes() diff --git a/Items/Weapons/Ranged/FoxPistols/FoxPistolBlue.cs b/Items/Weapons/Ranged/FoxPistols/FoxPistolBlue.cs index 69b2625..b68d954 100644 --- a/Items/Weapons/Ranged/FoxPistols/FoxPistolBlue.cs +++ b/Items/Weapons/Ranged/FoxPistols/FoxPistolBlue.cs @@ -83,7 +83,7 @@ public class FoxPistolBlue : ModItem Item.damage = 22; Item.shoot = ModContent.ProjectileType(); } - return CanUseItem(player); + return base.CanUseItem(player); } public override void AddRecipes() diff --git a/Items/Weapons/Ranged/FoxPistols/SpectralHowler.cs b/Items/Weapons/Ranged/FoxPistols/SpectralHowler.cs index a72906c..42b5eac 100644 --- a/Items/Weapons/Ranged/FoxPistols/SpectralHowler.cs +++ b/Items/Weapons/Ranged/FoxPistols/SpectralHowler.cs @@ -82,7 +82,7 @@ public class SpectralHowler : ModItem Item.damage = 260; Item.shoot = ModContent.ProjectileType(); } - return CanUseItem(player); + return base.CanUseItem(player); } public override void AddRecipes()