allow burrows to expand into dug channels

develop
Myk Taylor 2023-11-03 09:21:14 -07:00
parent 1d7e936ed4
commit 322d4fb51f
No known key found for this signature in database
1 changed files with 1 additions and 1 deletions

@ -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;