From 49ce3fcbf8ba12483c78f03d88efb6c6091e3649 Mon Sep 17 00:00:00 2001 From: crumblingstatue Date: Sat, 15 Apr 2023 09:40:35 +0200 Subject: [PATCH] Move unbreakable layer further down --- src/world.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/world.rs b/src/world.rs index 1d15828..567451f 100644 --- a/src/world.rs +++ b/src/world.rs @@ -217,7 +217,7 @@ impl Chunk { } } // Unbreakable layer at bottom - if pos.y > 780 { + if pos.y > 798 { for b in &mut tiles { b.mid = Tile::UNBREAKANIUM; }