diff --git a/lib/CheckMap.hs b/lib/CheckMap.hs
index 04f3f75ae479bd837c53ddee52d173a1be666fd3..fead0b95d6ef6bb6dd4892695044b8a6d0114059 100644
--- a/lib/CheckMap.hs
+++ b/lib/CheckMap.hs
@@ -21,7 +21,7 @@ import           GHC.Generics     (Generic)
 
 
 import           Badges           (Badge)
-import           LintConfig       (LintConfig')
+import           LintConfig       (LintConfig', LintConfig (configAssemblyTag))
 import           LintWriter       (LintResult, invertLintResult,
                                    resultToAdjusted, resultToBadges,
                                    resultToDeps, resultToLints, resultToOffers,
@@ -106,6 +106,7 @@ runLinter isMain config tiledmap depth = MapResult
   where
     linksLobby = \case
       MapLink link -> "/@/rc3_21/lobby" `T.isPrefixOf` link
+        || configAssemblyTag config == "lobby"
       _ -> False
     layerDeps = concatMap resultToDeps layer
     layer = checkLayerRec config depth (V.toList $ tiledmapLayers tiledmap)