diff options
Diffstat (limited to 'graphics')
| -rw-r--r-- | graphics/src/render.rs | 2 |
1 files changed, 1 insertions, 1 deletions
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 |