diff --git a/MrBigsock/Assets/Code/PlayerController.cs b/MrBigsock/Assets/Code/PlayerController.cs
index f96d1f775666923839d11ba07bd17495275b47c4..0060c72dd532ee84a08f0e40b87ea2782fda6a1a 100644
--- a/MrBigsock/Assets/Code/PlayerController.cs
+++ b/MrBigsock/Assets/Code/PlayerController.cs
@@ -138,7 +138,7 @@ namespace BigSock {
 				Updates the modifiers to the character's stats.
 			*/
 			public override void UpdateModifiers(ICharacterStats modifiers = null) {
-				super.UpdateModifiers(modifiers);
+				base.UpdateModifiers(modifiers);
 				manaBar?.SetMaxXp(Stats.MaxMana);
 				staminaBar?.SetMaxXp(Stats.MaxStamina);
 			}