mindustry logic execution, map- and schematic- parsing and rendering
Diffstat (limited to 'src/block/walls.rs')
-rw-r--r--src/block/walls.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/block/walls.rs b/src/block/walls.rs
index f2dcb01..4eaad5c 100644
--- a/src/block/walls.rs
+++ b/src/block/walls.rs
@@ -6,7 +6,7 @@ use crate::data::renderer::load;
make_simple!(WallBlock, |_, _, _, _, _, s| {
let mut base = load!("thruster", s);
- base.overlay(&load!("thruster-top", s));
+ unsafe { base.overlay(&load!("thruster-top", s)) };
base
});