diff options
Diffstat (limited to 'scripts/Entities/Actions/SpellAction.cs')
| -rw-r--r-- | scripts/Entities/Actions/SpellAction.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/Entities/Actions/SpellAction.cs b/scripts/Entities/Actions/SpellAction.cs index d9e9952..28d6caa 100644 --- a/scripts/Entities/Actions/SpellAction.cs +++ b/scripts/Entities/Actions/SpellAction.cs @@ -16,7 +16,7 @@ public partial class SpellAction : DirectionalAction { this.spell = spell; - Cost = 5; + cost = 5; } public override bool Perform() @@ -53,7 +53,7 @@ public partial class SpellAction : DirectionalAction effect.Apply(Actor, target); } - Actor.Energy -= Cost; + Actor.Energy -= cost; return true; } } |
