update to 1.19.2
This commit is contained in:
@@ -3,9 +3,9 @@ org.gradle.jvmargs=-Xmx1G
|
|||||||
|
|
||||||
# Fabric Properties
|
# Fabric Properties
|
||||||
# check these on https://fabricmc.net/develop
|
# check these on https://fabricmc.net/develop
|
||||||
minecraft_version=1.19-pre5
|
minecraft_version=1.19.2
|
||||||
yarn_mappings=1.19-pre5+build.3
|
yarn_mappings=1.19.2+build.4
|
||||||
loader_version=0.14.6
|
loader_version=0.14.9
|
||||||
|
|
||||||
# Mod Properties
|
# Mod Properties
|
||||||
mod_version = 1.2.0
|
mod_version = 1.2.0
|
||||||
@@ -13,7 +13,7 @@ org.gradle.jvmargs=-Xmx1G
|
|||||||
archives_base_name = cave_dust
|
archives_base_name = cave_dust
|
||||||
|
|
||||||
# Dependencies
|
# Dependencies
|
||||||
fabric_version=0.54.0+1.19
|
fabric_version=0.59.0+1.19.2
|
||||||
clothconfig_version = 6.1.48
|
clothconfig_version = 8.0.75
|
||||||
modmenu_version = 4.0.0-beta.4
|
modmenu_version = 4.0.6
|
||||||
kirin_version=1.10.0-beta.2
|
kirin_version=1.11.1-beta.1
|
||||||
|
|||||||
@@ -3,7 +3,6 @@ package net.lizistired.cavedust;
|
|||||||
//minecraft imports
|
//minecraft imports
|
||||||
import net.minecraft.client.MinecraftClient;
|
import net.minecraft.client.MinecraftClient;
|
||||||
import net.minecraft.text.Text;
|
import net.minecraft.text.Text;
|
||||||
import net.minecraft.util.Util;
|
|
||||||
import net.minecraft.util.math.BlockPos;
|
import net.minecraft.util.math.BlockPos;
|
||||||
import net.minecraft.world.World;
|
import net.minecraft.world.World;
|
||||||
//other imports
|
//other imports
|
||||||
@@ -13,7 +12,6 @@ import net.fabricmc.fabric.api.client.event.lifecycle.v1.ClientTickEvents;
|
|||||||
import org.slf4j.Logger;
|
import org.slf4j.Logger;
|
||||||
import org.slf4j.LoggerFactory;
|
import org.slf4j.LoggerFactory;
|
||||||
//java imports
|
//java imports
|
||||||
import java.awt.*;
|
|
||||||
import java.nio.file.Path;
|
import java.nio.file.Path;
|
||||||
//static imports
|
//static imports
|
||||||
import static net.lizistired.cavedust.utils.MathHelper.*;
|
import static net.lizistired.cavedust.utils.MathHelper.*;
|
||||||
@@ -34,8 +32,8 @@ public class CaveDust implements ClientModInitializer {
|
|||||||
instance = this;
|
instance = this;
|
||||||
}
|
}
|
||||||
//config assignment
|
//config assignment
|
||||||
private static CaveDustConfig config;
|
private static net.lizistired.cavedust.CaveDustConfig config;
|
||||||
public CaveDustConfig getConfig() {
|
public net.lizistired.cavedust.CaveDustConfig getConfig() {
|
||||||
return config;
|
return config;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ import static net.lizistired.cavedust.utils.MathHelper.*;
|
|||||||
import java.nio.file.Path;
|
import java.nio.file.Path;
|
||||||
|
|
||||||
public class CaveDustConfig extends JsonFile {
|
public class CaveDustConfig extends JsonFile {
|
||||||
private transient final CaveDust CaveDust;
|
private transient final net.lizistired.cavedust.CaveDust CaveDust;
|
||||||
|
|
||||||
|
|
||||||
private int dimensionMaxX = 5;
|
private int dimensionMaxX = 5;
|
||||||
@@ -31,7 +31,7 @@ public class CaveDustConfig extends JsonFile {
|
|||||||
private float lowerLimit = -64;
|
private float lowerLimit = -64;
|
||||||
private int particleMultiplier = 1;
|
private int particleMultiplier = 1;
|
||||||
|
|
||||||
public CaveDustConfig(Path file, CaveDust caveDust) {
|
public CaveDustConfig(Path file, net.lizistired.cavedust.CaveDust caveDust) {
|
||||||
super(file);
|
super(file);
|
||||||
this.CaveDust = caveDust;
|
this.CaveDust = caveDust;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -2,7 +2,6 @@ package net.lizistired.cavedust.utils;
|
|||||||
|
|
||||||
import net.fabricmc.fabric.api.client.keybinding.v1.KeyBindingHelper;
|
import net.fabricmc.fabric.api.client.keybinding.v1.KeyBindingHelper;
|
||||||
import net.minecraft.client.option.KeyBinding;
|
import net.minecraft.client.option.KeyBinding;
|
||||||
import net.minecraft.client.option.StickyKeyBinding;
|
|
||||||
import net.minecraft.client.util.InputUtil;
|
import net.minecraft.client.util.InputUtil;
|
||||||
import org.lwjgl.glfw.GLFW;
|
import org.lwjgl.glfw.GLFW;
|
||||||
|
|
||||||
|
|||||||
@@ -7,7 +7,6 @@ import net.minecraft.util.math.BlockPos;
|
|||||||
import net.minecraft.world.World;
|
import net.minecraft.world.World;
|
||||||
|
|
||||||
import java.util.Objects;
|
import java.util.Objects;
|
||||||
import java.util.Optional;
|
|
||||||
|
|
||||||
import static net.minecraft.world.biome.BiomeKeys.LUSH_CAVES;
|
import static net.minecraft.world.biome.BiomeKeys.LUSH_CAVES;
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user