chore: disabled "Goal" generation from initial state

This commit is contained in:
Sara Gerretsen 2026-04-01 14:57:41 +02:00
parent 8e7aff213b
commit 439ca8e566

View file

@ -35,7 +35,9 @@ void Generator::initialise_state() {
}
print_line("Writing start & goal");
this->state->set_at({ 0, y }, Terminals::Start);
#if 0
this->state->set_at({ this->state->size.x - 1, y }, Terminals::Goal);
#endif
}
void Generator::ready() {