﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
16783	[PATCH] small fix for landuse + building warning	naoliv	team	"With an object having `landuse` + `building` we see a warning saying `suspicious tag combination - landuse together with landuse`

Changing the order fixes this:
{{{#!patch
diff --git a/data/validator/combinations.mapcss b/data/validator/combinations.mapcss
index ecfb1ab15..683293fe5 100644
--- a/data/validator/combinations.mapcss
+++ b/data/validator/combinations.mapcss
@@ -359,7 +359,7 @@ node[amenity][amenity =~ /^(restaurant|cafe|fast_food)$/][!name][noname!=yes] {
 way[highway][barrier],
 *[highway][waterway][waterway!=dam][waterway!=weir],
 way[highway][natural][natural!=ridge],
-*[landuse][landuse!=retail][building] {
+*[building][landuse][landuse!=retail] {
   throwWarning: tr(""{0} together with {1}"", ""{0.key}"", ""{1.key}"");
   group: tr(""suspicious tag combination"");
   assertNoMatch: ""node highway=street_lamp natural=birds_nest"";
@@ -522,4 +522,4 @@ way[highway][lanes][!lanes:forward][!lanes:backward][oneway!=yes][oneway!=-1][ju
   assertNoMatch: ""way highway=primary lanes=3 oneway=-1"";
   assertNoMatch: ""way highway=primary lanes=4"";
   assertMatch: ""way highway=primary lanes=3"";
-}
\ No newline at end of file
+}
}}}"	defect	new	normal		Core validator				
