mindustry logic execution, map- and schematic- parsing and rendering
Diffstat (limited to 'src/block/walls.rs')
| -rw-r--r-- | src/block/walls.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/block/walls.rs b/src/block/walls.rs index 0317220..59967ac 100644 --- a/src/block/walls.rs +++ b/src/block/walls.rs @@ -6,7 +6,7 @@ use crate::data::renderer::{load, read_with, ImageHolder, TOP}; use tinyrand::{Rand, RandRange, Seeded, StdRand}; use tinyrand_std::clock_seed::ClockSeed; -make_simple!(WallBlock, |_, _, name, _, _| { +make_simple!(WallBlock, |_, _, name, _, _, _| { macro_rules! pick { ($name: literal => load $n: literal) => {{ let mut rand = StdRand::seed(ClockSeed::default().next_u64()); |