Skip to content

Commit

Permalink
Fix apparent attempt to kill starting room when culling surplus rooms
Browse files Browse the repository at this point in the history
  • Loading branch information
dashodanger committed Aug 16, 2024
1 parent cbe7280 commit 755af4e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/grower.lua
Original file line number Diff line number Diff line change
Expand Up @@ -4456,7 +4456,7 @@ gui.debugf("=== Coverage seeds: %d/%d rooms: %d/%d\n",
end
end
if R.prelim_conn_num(R, LEVEL) == 1 and R.areas[1].svolume <= 8
and #R.closets == 0 and #R.areas == 1 and R.is_start then
and #R.closets == 0 and #R.areas == 1 and not R.is_start then
gui.printf("Prelim conn num: " .. R.prelim_conn_num(R, LEVEL) .. "\n")
gui.printf(table.tostr(R, 2))
Grower_kill_room(SEEDS, LEVEL, R)
Expand Down

0 comments on commit 755af4e

Please sign in to comment.