mindustry logic execution, map- and schematic- parsing and rendering
Diffstat (limited to 'src/block/liquid.rs')
| -rw-r--r-- | src/block/liquid.rs | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/block/liquid.rs b/src/block/liquid.rs index 4bb8106..de2917b 100644 --- a/src/block/liquid.rs +++ b/src/block/liquid.rs @@ -18,12 +18,8 @@ make_simple!( let mask = mask(ctx, rot, name); let (index, rot, flip) = mask2rotations(mask, rot); let tile = rotations2tile((index, rot, flip), &format!("{name}-top"), s); - let mut bottom = load(&format!("conduit-bottom-{index}"), s); - flrot(flip, rot, &mut bottom); - bottom.tint(image::Rgb([74, 75, 83])); - bottom.overlay(tile.borrow()); // TODO caps. stopped trying bcz too complex - bottom + tile }, true ); |