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:
+1
-1
@@ -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
@@ -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);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user