From fe0d30df782501c1bb81ad4c4be8c8194fe061ee Mon Sep 17 00:00:00 2001 From: EnZaXD <60033407+FlorianMichael@users.noreply.github.com> Date: Wed, 21 Feb 2024 16:13:15 +0100 Subject: [PATCH 1/3] paste.gg -> mclo.gs (#3706) --- .github/ISSUE_TEMPLATE/bug_report.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index 5e3402f96..a525f5554 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -23,11 +23,11 @@ body: attributes: label: Console Error description: | - If you encounter warnings/errors in your console, **paste them with https://paste.gg/ and put the paste link here**. + If you encounter warnings/errors in your console, **paste them with https://mclo.gs/ and put the paste link here**. If the error is small/less than 10 lines, you may put it directly into this field. value: | ``` - Put the paste.gg link or text here. + Put the mclo.gs link or text here. ``` placeholder: Please do not remove the grave accents; simply replace the line of text in the middle. validations: From dafce79374edace4c5596d5c607f6f4bc013a27b Mon Sep 17 00:00:00 2001 From: EnZaXD <60033407+FlorianMichael@users.noreply.github.com> Date: Thu, 29 Feb 2024 11:11:10 +0100 Subject: [PATCH 2/3] Tidy up fabric.mod.json file of fabric platform (#3728) --- fabric/src/main/resources/fabric.mod.json | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/fabric/src/main/resources/fabric.mod.json b/fabric/src/main/resources/fabric.mod.json index 9cbbd6012..4eb814f1e 100644 --- a/fabric/src/main/resources/fabric.mod.json +++ b/fabric/src/main/resources/fabric.mod.json @@ -16,13 +16,11 @@ "_MylesC", "creeper123123321", "Gerrygames", - "KennyTV", + "kennytv", "Matsv" ], "depends": { - "fabricloader": ">=0.14.0" - }, - "recommends": { + "fabricloader": ">=0.14.0", "viafabric": ">=0.4.10" }, "custom": { From 04e572fa308efd6fd18d45e630872354e120546e Mon Sep 17 00:00:00 2001 From: Nassim Jahnke Date: Fri, 1 Mar 2024 12:38:54 +0100 Subject: [PATCH 3/3] Hotfix receiving level screen not closing on Velocity Closes #3630 --- .../rewriter/EntityPacketRewriter1_20_3.java | 3 +++ 1 file changed, 3 insertions(+) diff --git a/common/src/main/java/com/viaversion/viaversion/protocols/protocol1_20_3to1_20_2/rewriter/EntityPacketRewriter1_20_3.java b/common/src/main/java/com/viaversion/viaversion/protocols/protocol1_20_3to1_20_2/rewriter/EntityPacketRewriter1_20_3.java index 3c5742ecc..f4f538f11 100644 --- a/common/src/main/java/com/viaversion/viaversion/protocols/protocol1_20_3to1_20_2/rewriter/EntityPacketRewriter1_20_3.java +++ b/common/src/main/java/com/viaversion/viaversion/protocols/protocol1_20_3to1_20_2/rewriter/EntityPacketRewriter1_20_3.java @@ -85,6 +85,9 @@ public final class EntityPacketRewriter1_20_3 extends EntityRewriter sendChunksSentGameEvent(wrapper)); } }); + + // https://github.com/ViaVersion/ViaVersion/issues/3630, should still investigate why sending it with respawn/login doesn't work on Velocity + protocol.registerClientbound(ClientboundPackets1_20_2.WORLD_BORDER_INIT, this::sendChunksSentGameEvent); } private void sendChunksSentGameEvent(final PacketWrapper wrapper) throws Exception {