From 65fb9177e91ec843a7a0af0adc23248830a6e9f4 Mon Sep 17 00:00:00 2001 From: Big Duckie Date: Tue, 5 Jul 2022 12:27:26 -0600 Subject: [PATCH] Fix Fox Pistol crashes. --- Items/Weapons/Ranged/FoxPistols/FoxPistol.cs | 2 +- Items/Weapons/Ranged/FoxPistols/FoxPistolBlue.cs | 2 +- Items/Weapons/Ranged/FoxPistols/SpectralHowler.cs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) 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()