summaryrefslogtreecommitdiff
path: root/Thronefall_1_57/Decompile/Thronefall/UpgradeMagicArmor.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Thronefall_1_57/Decompile/Thronefall/UpgradeMagicArmor.cs')
-rw-r--r--Thronefall_1_57/Decompile/Thronefall/UpgradeMagicArmor.cs19
1 files changed, 0 insertions, 19 deletions
diff --git a/Thronefall_1_57/Decompile/Thronefall/UpgradeMagicArmor.cs b/Thronefall_1_57/Decompile/Thronefall/UpgradeMagicArmor.cs
deleted file mode 100644
index 8251e8b..0000000
--- a/Thronefall_1_57/Decompile/Thronefall/UpgradeMagicArmor.cs
+++ /dev/null
@@ -1,19 +0,0 @@
-using UnityEngine;
-
-public class UpgradeMagicArmor : MonoBehaviour
-{
- public static UpgradeMagicArmor instance;
-
- [BalancingParameter(BalancingParameter.EType.Default)]
- public float damageAmount = 1f;
-
- private void Awake()
- {
- instance = this;
- }
-
- private void OnEnable()
- {
- PlayerUpgradeManager.instance.magicArmor = true;
- }
-}