From 5c265ada0d1ec531fa97ad132b87c99cb9e81b1a Mon Sep 17 00:00:00 2001 From: Matheus Date: Sat, 16 Aug 2025 17:49:02 -0300 Subject: Remoção de prints MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- scripts/Character.cs | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to 'scripts/Character.cs') 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; } } -- cgit v1.2.3