mindustry logic execution, map- and schematic- parsing and rendering
add scale
bendn 4 months ago
parent 89f4b64 · commit befad19
-rw-r--r--mindus/src/data/map.rs4
1 files changed, 4 insertions, 0 deletions
diff --git a/mindus/src/data/map.rs b/mindus/src/data/map.rs
index 508927f..df44601 100644
--- a/mindus/src/data/map.rs
+++ b/mindus/src/data/map.rs
@@ -356,6 +356,10 @@ impl Build {
if mask & 4 != 0 {
read_liquids(buff, &mut self.liquids)?;
}
+ if mask & 16 != 0 {
+ let _scale = buff.read_f32()?;
+ let _duration = buff.read_f32()?;
+ }
// "efficiency"
_ = buff.read_u8()? as f64 / 255.;
_ = buff.read_u8()? as f64 / 255.;