From f18bb2e2cb1f2f4332af68b9212de95732d7e8b4 Mon Sep 17 00:00:00 2001 From: crumblingstatue Date: Wed, 5 Apr 2023 01:31:23 +0200 Subject: [PATCH] Adjust music to new underground height --- src/app.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app.rs b/src/app.rs index ee0bc95..1b17378 100644 --- a/src/app.rs +++ b/src/app.rs @@ -174,7 +174,7 @@ impl App { t.bg = self.game.tile_to_place; } } - if self.game.camera_offset.y > 134217712 { + if self.game.camera_offset.y > 643_000 { self.game.current_biome = Biome::Underground; } else { self.game.current_biome = Biome::Surface;