From 018d7d4c06a354071f72c77dc03abbbe622fdc81 Mon Sep 17 00:00:00 2001 From: Freya Murphy Date: Thu, 13 Nov 2025 09:35:30 -0500 Subject: dungeon: have Dungeon store the rng, not the Floor --- graphics/src/render.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'graphics') diff --git a/graphics/src/render.rs b/graphics/src/render.rs index 501f140..d450f16 100644 --- a/graphics/src/render.rs +++ b/graphics/src/render.rs @@ -663,7 +663,7 @@ impl Renderer { draw_text!(self, r, UI_COL1, UI_ROW3, "DIR {dir}"); // Draw Player Seed - let seed = &dungeon.floor.seed(); + let seed = &dungeon.seed(); draw_text!(self, r, UI_COL2, UI_ROW1, "{seed:016X}"); // Draw Dungeon Hash -- cgit v1.2.3-freya