Compare commits

..

4 Commits

Author SHA1 Message Date
Liz Graham
314eae4917 finally get this to work 2024-01-02 01:48:09 +00:00
Liz Graham
4f3e80bac4 update to 1.20.2 2023-12-04 18:41:42 +00:00
Liz Graham
12016db5f2 Update README.md 2023-06-21 02:48:46 +01:00
Liz Graham
e6b4636119 update to 1.20 2023-06-21 02:47:36 +01:00
5 changed files with 26 additions and 20 deletions

View File

@@ -1,8 +1,9 @@
plugins {
id 'fabric-loom' version '1.2-SNAPSHOT'
id 'maven-publish'
}
id "dev.architectury.loom" version "1.3-SNAPSHOT" apply(false)
}
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17

View File

@@ -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
loader_version=0.14.19
minecraft_version=1.20.2
yarn_mappings=1.20.2+build.4
loader_version=0.14.24
# 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.90.7+1.20.2
clothconfig_version=12.0.10
modmenu_version=8.0.0-beta.2
kirin_version=1.16.0+1.20.2

View File

@@ -1,10 +1,14 @@
pluginManagement {
repositories {
maven {
name = 'Fabric'
url = 'https://maven.fabricmc.net/'
}
mavenCentral()
maven { url "https://maven.fabricmc.net/" }
maven { url "https://maven.architectury.dev/" }
maven { url "https://maven.minecraftforge.net/" }
gradlePluginPortal()
}
}
include("common")
include("fabric")
include("forge")
rootProject.name = "cave_dust"

View File

@@ -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, mouseX, mouseY, partialTicks);
super.render(context, mouseX, mouseY, partialTicks);
}
private String getNameOfParticle(){
CaveDustConfig config = CaveDust.getInstance().getConfig();

View File

@@ -28,7 +28,7 @@
"depends": {
"fabricloader": ">=0.14.5",
"fabric": "*",
"minecraft": "1.19.4",
"minecraft": "1.20.2",
"java": ">=17"
},
"suggests": {