update to 1.20
This commit is contained in:
@@ -3,17 +3,17 @@ org.gradle.jvmargs=-Xmx1G
|
||||
|
||||
# Fabric Properties
|
||||
# check these on https://fabricmc.net/develop
|
||||
minecraft_version=1.19.4
|
||||
yarn_mappings=1.19.4+build.2
|
||||
minecraft_version=1.20.1
|
||||
yarn_mappings=1.20+build.1
|
||||
loader_version=0.14.19
|
||||
|
||||
# Mod Properties
|
||||
mod_version = 1.4.1
|
||||
maven_group = com.lizistired
|
||||
archives_base_name = cave_dust
|
||||
mod_version=1.4.1
|
||||
maven_group=com.lizistired
|
||||
archives_base_name=cave_dust
|
||||
|
||||
# Dependencies
|
||||
fabric_version=0.81.1+1.19.4
|
||||
clothconfig_version =9.0.94
|
||||
modmenu_version =6.2.2
|
||||
kirin_version=1.14.0
|
||||
fabric_version=0.83.0+1.20
|
||||
clothconfig_version=9.0.94
|
||||
modmenu_version=7.0.1
|
||||
kirin_version=1.15.0
|
||||
|
||||
@@ -3,6 +3,7 @@ package net.lizistired.cavedust;
|
||||
import com.minelittlepony.common.client.gui.GameGui;
|
||||
import com.minelittlepony.common.client.gui.element.*;
|
||||
import net.lizistired.cavedust.utils.TranslatableTextHelper;
|
||||
import net.minecraft.client.gui.DrawContext;
|
||||
import net.minecraft.client.gui.screen.Screen;
|
||||
import net.minecraft.client.util.math.MatrixStack;
|
||||
import net.minecraft.particle.ParticleEffect;
|
||||
@@ -106,9 +107,9 @@ public class ModMenuConfigScreen extends GameGui {
|
||||
|
||||
|
||||
@Override
|
||||
public void render(MatrixStack matrices, int mouseX, int mouseY, float partialTicks) {
|
||||
renderBackground(matrices);
|
||||
super.render(matrices, mouseX, mouseY, partialTicks);
|
||||
public void render(DrawContext context, int mouseX, int mouseY, float partialTicks) {
|
||||
renderBackground(context);
|
||||
super.render(context, mouseX, mouseY, partialTicks);
|
||||
}
|
||||
private String getNameOfParticle(){
|
||||
CaveDustConfig config = CaveDust.getInstance().getConfig();
|
||||
|
||||
@@ -28,7 +28,7 @@
|
||||
"depends": {
|
||||
"fabricloader": ">=0.14.5",
|
||||
"fabric": "*",
|
||||
"minecraft": "1.19.4",
|
||||
"minecraft": "1.20.x",
|
||||
"java": ">=17"
|
||||
},
|
||||
"suggests": {
|
||||
|
||||
Reference in New Issue
Block a user