diff options
| author | metamuffin <metamuffin@disroot.org> | 2025-10-14 22:11:39 +0200 |
|---|---|---|
| committer | metamuffin <metamuffin@disroot.org> | 2025-10-14 22:11:39 +0200 |
| commit | b791f17b956098297cccb4ed8f04e8b5ec07e65d (patch) | |
| tree | e3824ebf05af294dbf144ee7873b65c97184db7a /server/tools/src | |
| parent | 65a492c588ee073fdcfbbb149897604aea46a24f (diff) | |
| download | hurrycurry-b791f17b956098297cccb4ed8f04e8b5ec07e65d.tar hurrycurry-b791f17b956098297cccb4ed8f04e8b5ec07e65d.tar.bz2 hurrycurry-b791f17b956098297cccb4ed8f04e8b5ec07e65d.tar.zst | |
linter: expect exclusive oven and freezer
Diffstat (limited to 'server/tools/src')
| -rw-r--r-- | server/tools/src/map_linter.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/server/tools/src/map_linter.rs b/server/tools/src/map_linter.rs index 94b57726..d4bf5c9a 100644 --- a/server/tools/src/map_linter.rs +++ b/server/tools/src/map_linter.rs @@ -49,14 +49,14 @@ static NORMAL: &[&str] = &[ "rolling-board", "stove", "table", - "oven", - "freezer", "black-hole-counter", "white-hole-counter", "book", "conveyor", ]; static EXCLUSIVE: &[&str] = &[ + "freezer", + "oven", "steak-crate", "coconut-crate", "strawberry-crate", |