From 4e41ec5ed15c56dd068551d1d0b7762649c5d55f Mon Sep 17 00:00:00 2001 From: spatialfree Date: Sun, 24 Nov 2024 13:20:46 -0500 Subject: [PATCH] start food below instead? --- src/Mono.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Mono.cs b/src/Mono.cs index 194094c..881455d 100644 --- a/src/Mono.cs +++ b/src/Mono.cs @@ -30,7 +30,7 @@ static class Mono public static XYZi snake_dir = new(0, 0, 1); public static DeltaBool in_box = new(true); public static Dictionary holes = new(); - public static XYZi food = new(2, 0, 0); // [!] start random to keep new game fresh? + public static XYZi food = new(0, -1, 0); // [!] start random to keep new game fresh? public static DeltaBool eaten_latch = new(false); public static double eat_timestamp = 0.0;