Version Updates
This commit is contained in:
parent
34fd95ac11
commit
5622ae316a
4 changed files with 27 additions and 59 deletions
|
@ -1,23 +1,18 @@
|
||||||
# Done to increase the memory available to gradle.
|
# Done to increase the memory available to gradle.
|
||||||
org.gradle.jvmargs=-Xmx2G
|
org.gradle.jvmargs=-Xmx2G
|
||||||
|
|
||||||
# Fabric Properties
|
# Fabric Properties
|
||||||
# check these on https://fabricmc.net/versions.html
|
# check these on https://fabricmc.net/versions.html
|
||||||
minecraft_version=1.19
|
minecraft_version=1.19
|
||||||
loader_version=0.14.6
|
loader_version=0.14.6
|
||||||
fabric_version=0.55.2+1.19
|
fabric_version=0.55.2+1.19
|
||||||
|
|
||||||
#Loom
|
#Loom
|
||||||
loom_version=0.12-SNAPSHOT
|
loom_version=0.12-SNAPSHOT
|
||||||
|
|
||||||
# Mod Properties
|
# Mod Properties
|
||||||
mod_version=2.0.0
|
mod_version=2.0.1
|
||||||
maven_group=org.betterx.betterend
|
maven_group=org.betterx.betterend
|
||||||
archives_base_name=better-end
|
archives_base_name=better-end
|
||||||
|
|
||||||
# Dependencies
|
# Dependencies
|
||||||
# currently not on the main fabric site, check on the maven: https://maven.fabricmc.net/net/fabricmc/fabric-api/fabric-api
|
# currently not on the main fabric site, check on the maven: https://maven.fabricmc.net/net/fabricmc/fabric-api/fabric-api
|
||||||
|
|
||||||
patchouli_version=55-FABRIC-SNAPSHOT
|
patchouli_version=55-FABRIC-SNAPSHOT
|
||||||
bclib_version = 2.0.1
|
bclib_version=2.0.4
|
||||||
rei_version=9.0.472
|
rei_version=9.0.472
|
||||||
|
|
|
@ -1,28 +0,0 @@
|
||||||
package org.betterx.betterend.mixin.client;
|
|
||||||
|
|
||||||
import org.betterx.betterend.integration.Integrations;
|
|
||||||
|
|
||||||
import net.minecraft.client.renderer.DimensionSpecialEffects.EndEffects;
|
|
||||||
import net.minecraft.world.phys.Vec3;
|
|
||||||
|
|
||||||
import org.spongepowered.asm.mixin.Mixin;
|
|
||||||
import org.spongepowered.asm.mixin.injection.At;
|
|
||||||
import org.spongepowered.asm.mixin.injection.Inject;
|
|
||||||
import org.spongepowered.asm.mixin.injection.callback.CallbackInfoReturnable;
|
|
||||||
|
|
||||||
@Mixin(value = EndEffects.class, priority = 10)
|
|
||||||
public class EndEffectsMixin {
|
|
||||||
@Inject(method = "getBrightnessDependentFogColor", at = @At("HEAD"), cancellable = true)
|
|
||||||
private void be_restoreBrightness(Vec3 color, float sunHeight, CallbackInfoReturnable<Vec3> info) {
|
|
||||||
if (Integrations.ENDERSCAPE.modIsInstalled()) {
|
|
||||||
info.setReturnValue(color.scale(0.15000000596046448D));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@Inject(method = "isFoggyAt", at = @At("HEAD"), cancellable = true)
|
|
||||||
private void be_restoreFog(int camX, int camY, CallbackInfoReturnable<Boolean> info) {
|
|
||||||
if (Integrations.ENDERSCAPE.modIsInstalled()) {
|
|
||||||
info.setReturnValue(false);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -5,17 +5,16 @@
|
||||||
"compatibilityLevel": "JAVA_16",
|
"compatibilityLevel": "JAVA_16",
|
||||||
"client": [
|
"client": [
|
||||||
"AbstractSoundInstanceAccessor",
|
"AbstractSoundInstanceAccessor",
|
||||||
"HumanoidMobRendererMixin",
|
|
||||||
"ArmorStandRendererMixin",
|
"ArmorStandRendererMixin",
|
||||||
"MinecraftClientMixin",
|
|
||||||
"PlayerRendererMixin",
|
|
||||||
"MusicTrackerMixin",
|
|
||||||
"BiomeColorsMixin",
|
"BiomeColorsMixin",
|
||||||
"LocalPlayerMixin",
|
|
||||||
"ModelLoaderMixin",
|
|
||||||
"EndEffectsMixin",
|
|
||||||
"CapeLayerMixin",
|
"CapeLayerMixin",
|
||||||
"ItemStackMixin"
|
"HumanoidMobRendererMixin",
|
||||||
|
"ItemStackMixin",
|
||||||
|
"LocalPlayerMixin",
|
||||||
|
"MinecraftClientMixin",
|
||||||
|
"ModelLoaderMixin",
|
||||||
|
"MusicTrackerMixin",
|
||||||
|
"PlayerRendererMixin"
|
||||||
],
|
],
|
||||||
"injectors": {
|
"injectors": {
|
||||||
"defaultRequire": 1
|
"defaultRequire": 1
|
||||||
|
|
|
@ -44,7 +44,9 @@
|
||||||
"minecraft": "1.19",
|
"minecraft": "1.19",
|
||||||
"bclib": "2.0.x"
|
"bclib": "2.0.x"
|
||||||
},
|
},
|
||||||
"breaks": {"bclib": "<2.0.1"},
|
"breaks": {
|
||||||
|
"bclib": "<2.0.3"
|
||||||
|
},
|
||||||
"suggests": {
|
"suggests": {
|
||||||
"byg": ">=1.1.3",
|
"byg": ">=1.1.3",
|
||||||
"blockus": ">=2.0.2",
|
"blockus": ">=2.0.2",
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue