mindustry logic execution, map- and schematic- parsing and rendering
Diffstat (limited to 'src/block/walls.rs')
-rw-r--r--src/block/walls.rs5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/block/walls.rs b/src/block/walls.rs
index 2ec2e26..0108dc3 100644
--- a/src/block/walls.rs
+++ b/src/block/walls.rs
@@ -100,11 +100,6 @@ impl BlockLogic for DoorBlock {
}
}
- fn clone_state(&self, state: &State) -> State {
- let state = Self::get_state(state);
- Box::new(Self::create_state(*state))
- }
-
fn serialize_state(&self, state: &State) -> Result<DynData, SerializeError> {
let state = Self::get_state(state);
Ok(DynData::Boolean(*state))