From b71caa566e909d1592ecb11215b2fc11a2cbd806 Mon Sep 17 00:00:00 2001 From: metamuffin Date: Thu, 16 Oct 2025 14:44:43 +0200 Subject: Fix salad store cutting board being recipe exclusive --- server/tools/src/map_linter.rs | 3 +++ 1 file changed, 3 insertions(+) (limited to 'server/tools') diff --git a/server/tools/src/map_linter.rs b/server/tools/src/map_linter.rs index d4bf5c9a..ca0d54a1 100644 --- a/server/tools/src/map_linter.rs +++ b/server/tools/src/map_linter.rs @@ -169,6 +169,9 @@ pub fn check_map(map: &str) -> Result<()> { if data.tile_walkable.contains(&tile) { warnings.push(trm!("s.tool.map_linter.walkable", t = tile)); } + if data.tile_placeable_items.contains_key(&tile) { + warnings.push(trm!("s.tool.map_linter.exclusive", t = tile)); + } } Exclusive => { if !data.tile_placeable_items.contains_key(&tile) { -- cgit v1.3