From 6ac2f8424b8d1dbfe5dc2e277b0a88150718eee5 Mon Sep 17 00:00:00 2001 From: Iamgoofball Date: Tue, 14 Jan 2025 06:52:36 -0800 Subject: [PATCH] Updates the same-tile-item ban map lint to clarify it means the same tile and not adjacent tiles (#88949) this lint confused the hell out of me so I fixed it to be more clear --- tools/maplint/source/lint.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/maplint/source/lint.py b/tools/maplint/source/lint.py index 0847b10ed71..8b70bb98935 100644 --- a/tools/maplint/source/lint.py +++ b/tools/maplint/source/lint.py @@ -365,7 +365,7 @@ class Rules: if not banned_neighbor.matches(identified, neighbor): continue - failures.append(fail_content(identified, f"Typepath {identified.path} has a banned neighbor{when_text}: {neighbor.path}")) + failures.append(fail_content(identified, f"Typepath {identified.path} has a banned path on the same tile{when_text}: {neighbor.path}")) for required_neighbor in self.required_neighbors: found = False