mindustry logic execution, map- and schematic- parsing and rendering
-rw-r--r--Cargo.toml2
-rw-r--r--src/block/mod.rs2
2 files changed, 2 insertions, 2 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 8a0c45c..9509c1f 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "mindus"
-version = "4.0.8"
+version = "4.0.9"
edition = "2021"
description = "A library for working with mindustry data formats (eg schematics and maps) (fork of plandustry)"
authors = [
diff --git a/src/block/mod.rs b/src/block/mod.rs
index c3dea59..f48a62d 100644
--- a/src/block/mod.rs
+++ b/src/block/mod.rs
@@ -784,7 +784,7 @@ make_register! {
"phase-conveyor" -> BridgeBlock::new(1, false, cost!(Lead: 10, Graphite: 10, Silicon: 7, PhaseFabric: 5), 12, true);
"sorter" => ItemBlock::new(1, true, cost!(Copper: 2, Lead: 2));
"inverted-sorter" => ItemBlock::new(1, true, cost!(Copper: 2, Lead: 2));
- "unloader" -> ItemBlock::new(1, true, cost!(Titanium: 25, Silicon: 30));
+ "unloader" => ItemBlock::new(1, true, cost!(Titanium: 25, Silicon: 30));
"router" -> BasicBlock::new(1, true, cost!(Copper: 3));
"distributor" -> BasicBlock::new(2, true, cost!(Copper: 4, Lead: 4));
"overflow-gate" -> BasicBlock::new(1, true, cost!(Copper: 4, Lead: 2));