Skip to content

Commit a6d499e

Browse files
authored
1.21.5 support (#106)
* Initial 1.21.5 support * Update actions/upload-artifact to v4.6.2
1 parent d338ec2 commit a6d499e

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
- name: Build LimboFilter
2323
run: ./gradlew build
2424
- name: Upload LimboFilter
25-
uses: actions/upload-artifact@v3.0.0
25+
uses: actions/upload-artifact@v4.6.2
2626
with:
2727
name: LimboFilter
2828
path: "build/libs/limbofilter*.jar"

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- name: Build LimboFilter
1919
run: ./gradlew build
2020
- name: Upload LimboFilter
21-
uses: actions/upload-artifact@v3.0.0
21+
uses: actions/upload-artifact@v4.6.2
2222
with:
2323
name: LimboFilter
2424
path: "build/libs/limbofilter*.jar"

src/main/java/net/elytrium/limbofilter/LimboFilter.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -315,6 +315,7 @@ public void reload() {
315315
new PacketMapping(0x56, ProtocolVersion.MINECRAFT_1_20_3, true),
316316
new PacketMapping(0x58, ProtocolVersion.MINECRAFT_1_20_5, true),
317317
new PacketMapping(0x5D, ProtocolVersion.MINECRAFT_1_21_2, true),
318+
new PacketMapping(0x5C, ProtocolVersion.MINECRAFT_1_21_5, true),
318319
})
319320
.registerPacket(PacketDirection.CLIENTBOUND, SpawnEntity.class, SpawnEntity::new, new PacketMapping[]{
320321
new PacketMapping(0x0E, ProtocolVersion.MINIMUM_VERSION, true),

0 commit comments

Comments
 (0)