Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix blueprinted constructions over stairs #1332

Merged
merged 1 commit into from
Nov 12, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions internal/quickfort/build.lua
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ local function is_valid_tile_bridge(pos, db_entry, b)
(dir == T_direction.Right and pos.x == b.pos.x+b.width-1) then
return is_valid_tile_has_space(pos)
end
return is_valid_tile_has_space_or_is_ramp(pos)
return is_valid_tile_machine(pos)
end

-- although vanilla allows constructions to be built on top of constructed
Expand Down Expand Up @@ -213,7 +213,7 @@ local function is_tile_coverable(pos)
shape ~= df.tiletype_shape.STAIR_DOWN) then
return false
end
return is_tile_floor_adjacent(pos)
return true
end

--
Expand Down
Loading