summaryrefslogtreecommitdiffstats
path: root/Main.gd
diff options
context:
space:
mode:
authordusoleil <howcansocksbereal@gmail.com>2022-07-23 13:39:49 -0400
committerdusoleil <howcansocksbereal@gmail.com>2022-07-23 13:39:49 -0400
commit970476a745e00ff3490387645f77abc5558410c6 (patch)
tree4304c40c0e6ed7ca8ad8660c8addcb6224b613a0 /Main.gd
parent0823c295a3b03d98be356b239a3f74f05795d9c9 (diff)
downloadchicken-chaser-gd-970476a745e00ff3490387645f77abc5558410c6.tar.gz
chicken-chaser-gd-970476a745e00ff3490387645f77abc5558410c6.zip
Ignore unused returns
Diffstat (limited to 'Main.gd')
-rw-r--r--Main.gd2
1 files changed, 1 insertions, 1 deletions
diff --git a/Main.gd b/Main.gd
index f7fdec7..90f92a8 100644
--- a/Main.gd
+++ b/Main.gd
@@ -18,5 +18,5 @@ func spawn_chicken():
func _ready():
randomize()
- for i in range(num_chickens):
+ for _i in range(num_chickens):
spawn_chicken()