Skip to content

Commit 12b3412

Browse files
Error11OSIMULATAN
andauthored
1.20.4 support (#6)
Co-authored-by: SIMULATAN <[email protected]>
1 parent 9223837 commit 12b3412

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

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 '0.12-SNAPSHOT'
2+
id 'fabric-loom' version '1.5-SNAPSHOT'
33
id 'maven-publish'
44
}
55

gradle.properties

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

33
# Fabric (https://fabricmc.net/versions.html)
4-
minecraft_version=1.19.2
5-
yarn_mappings=1.19.2+build.8
6-
loader_version=0.14.9
4+
minecraft_version=1.20.4
5+
yarn_mappings=1.20.4+build.3
6+
loader_version=0.15.2
77

88
# Mod Properties
9-
mod_version=2.0.0
9+
mod_version=3.0.0
1010
maven_group=com.github.simulatan
1111
archives_base_name=notifications-addon
1212

1313
# Dependency Versions
1414

1515
# Meteor (https://maven.meteordev.org/)
16-
meteor_version=0.5.1-SNAPSHOT
16+
meteor_version=0.5.6-SNAPSHOT
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-7.4.1-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.5-bin.zip
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists

src/main/java/com/github/simulatan/meteornotificationsaddon/NotificationsAddon.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
import com.github.simulatan.meteornotificationsaddon.hud.NotificationsHudElement;
55
import com.mojang.logging.LogUtils;
66
import meteordevelopment.meteorclient.addons.MeteorAddon;
7-
import meteordevelopment.meteorclient.systems.commands.Commands;
7+
import meteordevelopment.meteorclient.commands.Commands;
88
import meteordevelopment.meteorclient.systems.hud.Hud;
99
import meteordevelopment.meteorclient.systems.hud.HudGroup;
1010
import org.slf4j.Logger;
@@ -18,7 +18,7 @@ public class NotificationsAddon extends MeteorAddon {
1818
public void onInitialize() {
1919
LOG.info("Initializing Meteor Notifications Addon by SIMULATAN");
2020

21-
Commands.get().add(new NotificationsCommand());
21+
Commands.add(new NotificationsCommand());
2222

2323
// HUD
2424
Hud.get().register(NotificationsHudElement.INFO);

src/main/java/com/github/simulatan/meteornotificationsaddon/commands/NotificationsCommand.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
import com.mojang.brigadier.exceptions.DynamicCommandExceptionType;
1212
import com.mojang.brigadier.suggestion.Suggestions;
1313
import com.mojang.brigadier.suggestion.SuggestionsBuilder;
14-
import meteordevelopment.meteorclient.systems.commands.Command;
14+
import meteordevelopment.meteorclient.commands.Command;
1515
import meteordevelopment.meteorclient.utils.player.ChatUtils;
1616
import net.minecraft.command.CommandSource;
1717

0 commit comments

Comments
 (0)