summaryrefslogtreecommitdiff
path: root/Thronefall_1_0/Decompile/UpgradeMagicArmor.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Thronefall_1_0/Decompile/UpgradeMagicArmor.cs')
-rw-r--r--Thronefall_1_0/Decompile/UpgradeMagicArmor.cs18
1 files changed, 0 insertions, 18 deletions
diff --git a/Thronefall_1_0/Decompile/UpgradeMagicArmor.cs b/Thronefall_1_0/Decompile/UpgradeMagicArmor.cs
deleted file mode 100644
index 4fb88f5..0000000
--- a/Thronefall_1_0/Decompile/UpgradeMagicArmor.cs
+++ /dev/null
@@ -1,18 +0,0 @@
-using UnityEngine;
-
-public class UpgradeMagicArmor : MonoBehaviour
-{
- public static UpgradeMagicArmor instance;
-
- public float damageMultiplyer = 1f;
-
- private void Awake()
- {
- instance = this;
- }
-
- private void OnEnable()
- {
- PlayerUpgradeManager.instance.magicArmor = true;
- }
-}