Skip to content

Commit

Permalink
Fix: Orcus lair wall gap "fallback"
Browse files Browse the repository at this point in the history
A player recently got an Orcus level where the wall had no gap, so the
level was completely inaccessible.  Looks to me like this was because
the intended fallback position for failure to create any random gaps was
replacing the vertical wall with a horizontal wall, rather than with a
gap.
  • Loading branch information
entrez authored and copperwater committed Dec 12, 2023
1 parent 8763860 commit 5dcb5c7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dat/orcus.lua
Expand Up @@ -77,7 +77,7 @@ leftwall:iterate(function(x,y)
end
end)
if not madegap then
des.terrain(03,10, '-') -- failsafe
des.terrain(03,10, '.') -- failsafe
end

-- Doors
Expand Down

0 comments on commit 5dcb5c7

Please sign in to comment.