summaryrefslogtreecommitdiff
path: root/scripts/Character.cs
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/Character.cs')
-rw-r--r--scripts/Character.cs5
1 files changed, 1 insertions, 4 deletions
diff --git a/scripts/Character.cs b/scripts/Character.cs
index 172ffe4..1db6ee1 100644
--- a/scripts/Character.cs
+++ b/scripts/Character.cs
@@ -23,7 +23,6 @@ public partial class Character : Actor {
Walk(Vector2I.Left);
}
if (@event.IsActionPressed("walk-right")) {
- GD.Print("Hello!");
Walk(Vector2I.Right);
}
@@ -34,7 +33,6 @@ public partial class Character : Actor {
}
private void SkipTurn() {
- GD.Print("Skipped the turn.");
Energy = 0;
EndAction();
}
@@ -44,8 +42,7 @@ public partial class Character : Actor {
base.EndAction();
}
- public override void performAction() {
- GD.Print("I can act");
+ public override void PerformAction() {
canAct = true;
}
}