From 9dfc1625bd8d148a31a57479c58d8990a5bc69b7 Mon Sep 17 00:00:00 2001 From: Freya Murphy Date: Tue, 11 Nov 2025 14:23:05 -0500 Subject: fix lints in nightly --- dungeon/src/bsp.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dungeon/src/bsp.rs b/dungeon/src/bsp.rs index aaafa10..48a00e1 100644 --- a/dungeon/src/bsp.rs +++ b/dungeon/src/bsp.rs @@ -51,8 +51,8 @@ impl Rect { #[derive(Debug, Clone, PartialEq, Eq)] struct Node { rect: Rect, // Area this node covers - left: Option>, // Left child (if not leaf) - right: Option>, // Right child (if not leaf) + left: Option>, // Left child (if not leaf) + right: Option>, // Right child (if not leaf) room: Option, // Room created in this node (if leaf) } -- cgit v1.2.3-freya