diff --git a/build.gradle b/build.gradle index 37bb85652b..8305be311e 100644 --- a/build.gradle +++ b/build.gradle @@ -49,8 +49,7 @@ minecraft { // Default run configurations. // These can be tweaked, removed, or duplicated as needed. runs { - client { - workingDirectory project.file('run') + configureEach { property "mixin.debug.export", "true" mods { quark { @@ -59,14 +58,12 @@ minecraft { } } + client { + workingDirectory project.file('run') + } + server { workingDirectory project.file('runServer') - property "mixin.debug.export", "true" - mods { - quark { - source sourceSets.main - } - } } } } diff --git a/oddities/QuarkOddities-1.20.1.jar b/oddities/QuarkOddities-1.20.1.jar index 3685db01a1..b9c7652e46 100644 Binary files a/oddities/QuarkOddities-1.20.1.jar and b/oddities/QuarkOddities-1.20.1.jar differ diff --git a/oddities/stuff/META-INF/mods.toml b/oddities/stuff/META-INF/mods.toml index be3bbf69f7..3e0af42988 100644 --- a/oddities/stuff/META-INF/mods.toml +++ b/oddities/stuff/META-INF/mods.toml @@ -12,4 +12,5 @@ description='''Crazier Small things.''' [[dependencies.quarkoddities]] modId="quark" -mandatory=true \ No newline at end of file +mandatory=true +versionRange="[0,)" \ No newline at end of file