Skip to content

Commit

Permalink
allow burrows to expand into dug channels
Browse files Browse the repository at this point in the history
  • Loading branch information
myk002 committed Nov 3, 2023
1 parent 1d7e936 commit 322d4fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugins/burrow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ static void add_walls_to_burrow(color_ostream &out, df::burrow* b,
}

static void expand_burrows(color_ostream &out, const df::coord & pos, df::tiletype prev_tt, df::tiletype tt) {
if (!isWalkable(tt))
if (!isWalkable(tt) && tileShape(tt) != tiletype_shape::RAMP_TOP)
return;

bool changed = false;
Expand Down

0 comments on commit 322d4fb

Please sign in to comment.