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
This commit is contained in:
Iamgoofball
2025-01-14 15:52:36 +01:00
committed by GitHub
parent 2974fcda99
commit 6ac2f8424b
+1 -1
View File
@@ -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