diff options
author | stuebinm | 2022-10-11 11:28:30 +0200 |
---|---|---|
committer | stuebinm | 2022-10-11 11:28:30 +0200 |
commit | a29be8315c2e6647a5878529affda84ec8036ccb (patch) | |
tree | 9e5973c8e4a149dfcf2b20fcff6c08fe8c90fe59 /lib | |
parent | b6bc6c59c003cfbcfad2d5b1cf8809476f60fa17 (diff) |
update stack resolver
(also got rid of the map templater, which had version problems with
mustache — it's not likely anyone will need it anyways)
Diffstat (limited to 'lib')
-rw-r--r-- | lib/LintConfig.hs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/LintConfig.hs b/lib/LintConfig.hs index 87b9fbd..a84740d 100644 --- a/lib/LintConfig.hs +++ b/lib/LintConfig.hs @@ -182,7 +182,9 @@ expandWorlds config = config { configUriSchemas = configUriSchemas' } assemblysubsts = DomainSubstitution (M.fromList generated) ["map"] where generated = configAssemblies config - <&> \slug -> (slug, "/_/general/maps.world.di.c3voc.de/assembly/"<>slug) + <&> \slug -> if slug == "lobby" + then (slug, "/_/global/raw.githubusercontent.com/c0c0bird/bridging-bubbles") + else (slug, "/_/global/maps.world.di.c3voc.de/assembly/"<>slug) instance (FromJSON (LintConfig a)) => Argument (LintConfig a) where parseArgument str = |