Skip to content

Commit fbd1179

Browse files
author
dashodanger
committed
Address some assertion errors
1 parent fad0173 commit fbd1179

File tree

3 files changed

+27
-1
lines changed

3 files changed

+27
-1
lines changed

games/doom/fabs/fence/bars_16.lua

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,3 +69,29 @@ PREFABS.Bars_shiny_diag_hell =
6969
flat_FLAT23 = "CEIL5_2",
7070

7171
}
72+
73+
PREFABS.Bars_shiny_skinny =
74+
{
75+
file = "fence/bars_16.wad",
76+
map = "MAP03",
77+
78+
79+
80+
prob = 120,
81+
82+
where = "edge",
83+
key = "barred",
84+
85+
seed_w = 1,
86+
deep = 16,
87+
over = 16,
88+
89+
fence_h = 32,
90+
91+
x_fit = "frame",
92+
93+
bound_z1 = 0,
94+
95+
tag_1 = "?door_tag",
96+
door_action = "S1_LowerFloor",
97+
}

games/doom/fabs/fence/bars_16.wad

-1.76 KB
Binary file not shown.

scripts/grower.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4620,7 +4620,7 @@ gui.debugf("=== Coverage seeds: %d/%d rooms: %d/%d\n",
46204620
-- remove ungrown teleporter trunks
46214621
for _,R in pairs(LEVEL.rooms) do
46224622
if R.is_root and R.is_grown and #R.trunk.rooms == 1
4623-
and R:calc_walk_vol() <= 24 and not R.is_start then
4623+
and R:calc_walk_vol() <= 24 and not R.is_start and not R.emergency_sprouted then
46244624
gui.printf("Killed teleporter ROOM_" .. R.id .. "\n")
46254625
gui.printf(table.tostr(R.trunk.rooms,1) .. "\n")
46264626
gui.printf(table.tostr(R,2) .. "\n")

0 commit comments

Comments
 (0)