1
mirror of https://github.com/Shiewk/ViewServerResources.git synced 2026-04-28 03:44:17 +02:00

1.21.3 Support

This commit is contained in:
Shy
2024-12-03 11:07:29 +01:00
parent d305a8937c
commit e9880117d7
3 changed files with 7 additions and 7 deletions
+1 -1
View File
@@ -1,5 +1,5 @@
plugins { plugins {
id 'fabric-loom' version '1.6.12' id 'fabric-loom' version '1.8.9'
id 'maven-publish' id 'maven-publish'
} }
+5 -5
View File
@@ -2,13 +2,13 @@
org.gradle.jvmargs=-Xmx1G org.gradle.jvmargs=-Xmx1G
# Fabric Properties # Fabric Properties
# check these on https://modmuss50.me/fabric.html # check these on https://modmuss50.me/fabric.html
minecraft_version=1.21 minecraft_version=1.21.3
yarn_mappings=1.21+build.9 yarn_mappings=1.21.3+build.2
loader_version=0.16.2 loader_version=0.16.8
# Mod Properties # Mod Properties
mod_version=1.0.0 mod_version=1.0.1
maven_group=de.shiewk maven_group=de.shiewk
archives_base_name=ViewServerResources archives_base_name=ViewServerResources
# Dependencies # Dependencies
# check this on https://modmuss50.me/fabric.html # check this on https://modmuss50.me/fabric.html
fabric_version=0.102.0+1.21 fabric_version=0.106.1+1.21.3
@@ -11,7 +11,7 @@ public class ChatAnnouncer implements ClientTickEvents.EndTick {
@Override @Override
public void onEndTick(MinecraftClient client) { public void onEndTick(MinecraftClient client) {
if (client.player != null && !queue.isEmpty()){ if (client.player != null && !queue.isEmpty()){
client.player.sendMessage(queue.removeFirst()); client.player.sendMessage(queue.removeFirst(), false);
} }
} }