Skip to content
This repository was archived by the owner on Mar 10, 2025. It is now read-only.

Commit 6a921d1

Browse files
committed
Update to 1.20.2
1 parent 254d774 commit 6a921d1

17 files changed

Lines changed: 41 additions & 376 deletions

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
plugins {
2-
id 'fabric-loom' version '1.1-SNAPSHOT'
2+
id 'fabric-loom' version '1.4-SNAPSHOT'
33
}
44

55
sourceCompatibility = targetCompatibility = JavaVersion.VERSION_17

gradle.properties

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
org.gradle.jvmargs=-Xmx2G
22

33
# Fabric Properties (https://fabricmc.net/develop/)
4-
minecraft_version=1.19.4
5-
yarn_version=1.19.4+build.2
6-
loader_version=0.14.19
4+
minecraft_version=1.20.2
5+
yarn_version=1.20.2+build.4
6+
loader_version=0.14.23
77

88
# Mod Properties
99
mod_version=1.1
1010
maven_group=fartenware.package
1111
archives_base_name=fartenware
1212

1313
# Meteor (https://maven.meteordev.org/)
14-
meteor_version=0.5.3
14+
meteor_version=0.5.5
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.0.2-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.3-bin.zip
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists

src/main/java/fartenware/FartenWare.java

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,10 @@
11
package fartenware;
22

33
import fartenware.modules.hud.TextPresets;
4-
import fartenware.modules.main.BedrockBreaker;
5-
import fartenware.modules.main.EchestFarmerPlus;
6-
import fartenware.modules.main.ItemFrameInserter;
7-
import fartenware.modules.main.ItemFramePlacer;
4+
import fartenware.modules.main.*;
85
import meteordevelopment.meteorclient.MeteorClient;
96
import meteordevelopment.meteorclient.addons.MeteorAddon;
107
import meteordevelopment.meteorclient.systems.Systems;
11-
import meteordevelopment.meteorclient.commands.Commands;
128
import meteordevelopment.meteorclient.systems.hud.Hud;
139
import meteordevelopment.meteorclient.systems.hud.HudGroup;
1410
import meteordevelopment.meteorclient.systems.modules.Category;
@@ -27,8 +23,8 @@ public class FartenWare extends MeteorAddon {
2723
static ModMetadata metadata = FabricLoader.getInstance().getModContainer("fartenware").orElseThrow(() -> new RuntimeException("FartenWare mod container not found!")).getMetadata();
2824
public static String VERSION = metadata.getVersion().toString();
2925
public static final Logger LOG = LoggerFactory.getLogger("FartenWare");
30-
public static final Category MAIN = new Category("FartenWare", Items.SPYGLASS.getDefaultStack());
31-
public static final HudGroup HUD = new HudGroup("FartenWare");
26+
public static final Category Main = new Category("FartenWare", Items.SPYGLASS.getDefaultStack());
27+
public static final HudGroup Hud = new HudGroup("FartenWare");
3228

3329
@Override
3430
public void onInitialize() {
@@ -62,6 +58,6 @@ public String getPackage() {
6258

6359
@Override
6460
public void onRegisterCategories() {
65-
Modules.registerCategory(MAIN);
61+
Modules.registerCategory(Main);
6662
}
6763
}

src/main/java/fartenware/mixins/McClientMixin.java renamed to src/main/java/fartenware/mixins/MinecraftClientMixin.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
import org.spongepowered.asm.mixin.injection.callback.LocalCapture;
1818

1919
@Mixin(MinecraftClient.class)
20-
public class McClientMixin {
20+
public class MinecraftClientMixin {
2121

2222
@Shadow
2323
@Nullable

src/main/java/fartenware/modules/hud/TextPresets.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
import meteordevelopment.meteorclient.systems.hud.elements.TextHud;
66

77
public class TextPresets {
8-
public static final HudElementInfo<TextHud> INFO = new HudElementInfo<>(FartenWare.HUD, "farten-presets", "Displays text with Starscript.", TextPresets::create);
8+
public static final HudElementInfo<TextHud> INFO = new HudElementInfo<>(FartenWare.Hud, "farten-presets", "Displays text with Starscript.", TextPresets::create);
99

1010
private static TextHud create() {
1111
return new TextHud(INFO);

0 commit comments

Comments
 (0)