mindustry logic execution, map- and schematic- parsing and rendering
-rw-r--r--mindus/Cargo.toml2
-rw-r--r--mindus/src/data/schematic.rs4
2 files changed, 3 insertions, 3 deletions
diff --git a/mindus/Cargo.toml b/mindus/Cargo.toml
index a288b59..106e8e0 100644
--- a/mindus/Cargo.toml
+++ b/mindus/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "mindus"
-version = "5.0.10"
+version = "5.0.12"
edition = "2021"
description = "A library for working with mindustry data formats (eg schematics and maps) (fork of plandustry)"
authors = [
diff --git a/mindus/src/data/schematic.rs b/mindus/src/data/schematic.rs
index 1b6f4d2..7f85680 100644
--- a/mindus/src/data/schematic.rs
+++ b/mindus/src/data/schematic.rs
@@ -14,9 +14,9 @@ use crate::item::storage::ItemStorage;
use crate::utils::array::Array2D;
/// biggest schematic
-pub const MAX_DIMENSION: usize = 256;
+pub const MAX_DIMENSION: usize = 1024;
/// most possible blocks
-pub const MAX_BLOCKS: u32 = 256 * 256;
+pub const MAX_BLOCKS: u32 = 1024 * 1024;
/// a placement in a schematic
#[derive(Clone)]