mindustry logic execution, map- and schematic- parsing and rendering
fix incorrect item source drawing
bendn 2023-08-24
parent 740bd08 · commit d3686c9
-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 17506eb..8a0c45c 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "mindus"
-version = "4.0.7"
+version = "4.0.8"
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 1652338..c3dea59 100644
--- a/src/block/mod.rs
+++ b/src/block/mod.rs
@@ -1027,7 +1027,7 @@ make_register! {
"large-shield-projector" -> ShieldBlock::new(4, true, &[]);
"payload-source" => PayloadBlock::new(5, false, &[]);
"payload-void" => SimplePayloadBlock::new(5, true, &[]);
- "item-source" -> ItemBlock::new(1, true, &[]);
+ "item-source" => ItemBlock::new(1, true, &[]);
"item-void" -> BasicBlock::new(1, true, &[]);
"heat-source" => HeatCrafter::new(1, false, &[]);
}