mirror of
https://github.com/ViaVersion/ViaFabric.git
synced 2024-11-08 09:40:07 +01:00
19w40a
This commit is contained in:
parent
5fa44cb0df
commit
1ab937d220
@ -46,16 +46,16 @@ tasks.named<ProcessResources>("processResources") {
|
|||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
// transitive = false because Guava is conflicting on runClient
|
// transitive = false because Guava is conflicting on runClient
|
||||||
compile("us.myles:viaversion:2.1.4-19w37a") { isTransitive = false }
|
compile("us.myles:viaversion:2.1.4-19w40a") { isTransitive = false }
|
||||||
include("us.myles:viaversion:2.1.4-19w37a")
|
include("us.myles:viaversion:2.1.4-19w40a")
|
||||||
|
|
||||||
compileOnly("com.google.code.findbugs:jsr305:3.0.2")
|
compileOnly("com.google.code.findbugs:jsr305:3.0.2")
|
||||||
|
|
||||||
minecraft("com.mojang:minecraft:19w37a")
|
minecraft("com.mojang:minecraft:19w40a")
|
||||||
mappings("net.fabricmc:yarn:19w37a+build.1")
|
mappings("net.fabricmc:yarn:19w40a+build.4")
|
||||||
modCompile("net.fabricmc:fabric-loader:0.6.1+build.165")
|
modCompile("net.fabricmc:fabric-loader:0.6.3+build.167")
|
||||||
|
|
||||||
modCompile("net.fabricmc.fabric-api:fabric-api:0.3.2+build.227-1.15")
|
modCompile("net.fabricmc.fabric-api:fabric-api:0.4.3+build.247-1.15")
|
||||||
|
|
||||||
modCompile("io.github.cottonmc:cotton-client-commands:0.4.2+1.14.3-SNAPSHOT")
|
modCompile("io.github.cottonmc:cotton-client-commands:0.4.2+1.14.3-SNAPSHOT")
|
||||||
include("io.github.cottonmc:cotton-client-commands:0.4.2+1.14.3-SNAPSHOT")
|
include("io.github.cottonmc:cotton-client-commands:0.4.2+1.14.3-SNAPSHOT")
|
||||||
|
@ -297,6 +297,16 @@ public class VRViaConfig extends Config implements ViaVersionConfig {
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public boolean isNonFullBlockLightFix() {
|
||||||
|
return this.getBoolean("fix-non-full-blocklight", true);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public boolean is1_14HealthNaNFix() {
|
||||||
|
return this.getBoolean("fix-1_14-health-nan", true);
|
||||||
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public boolean is1_15InstantRespawn() {
|
public boolean is1_15InstantRespawn() {
|
||||||
return this.getBoolean("use-1_15-instant-respawn", false);
|
return this.getBoolean("use-1_15-instant-respawn", false);
|
||||||
|
Loading…
Reference in New Issue
Block a user