Fixed chimney blockage

This commit is contained in:
Joshua Barretto 2020-04-13 17:26:08 +01:00
parent 5146cc1981
commit e352858c03

View File

@ -151,7 +151,7 @@ impl Archetype for House {
let foundation = make_block(100, 100, 100).with_priority(foundation_layer); let foundation = make_block(100, 100, 100).with_priority(foundation_layer);
let log = make_block(60, 45, 30); let log = make_block(60, 45, 30);
let floor = make_block(100, 75, 50).with_priority(7); let floor = make_block(100, 75, 50);
let wall = make_block(200, 180, 150).with_priority(facade_layer); let wall = make_block(200, 180, 150).with_priority(facade_layer);
let roof = make_block(self.roof_color.r, self.roof_color.g, self.roof_color.b).with_priority(facade_layer); let roof = make_block(self.roof_color.r, self.roof_color.g, self.roof_color.b).with_priority(facade_layer);
let empty = BlockMask::nothing(); let empty = BlockMask::nothing();