From af1056c00ac9245d50c8dc4285538a7d31f166d3 Mon Sep 17 00:00:00 2001 From: somebody_master Date: Wed, 1 Mar 2023 22:42:08 +0100 Subject: [PATCH] Use ; on line end Signed-off-by: somebody_master --- Test.gd | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Test.gd b/Test.gd index 976777e..2dac99c 100644 --- a/Test.gd +++ b/Test.gd @@ -2,8 +2,8 @@ extends Test # Called when the node enters the scene tree for the first time. func _ready() -> void: - start_test() + start_test(); # Called every frame. 'delta' is the elapsed time since the previous frame. func _process(_delta: float) -> void: - pass + pass;