diff options
author | Linnea Gräf <nea@nea.moe> | 2024-06-05 01:04:55 +0200 |
---|---|---|
committer | Linnea Gräf <nea@nea.moe> | 2024-06-05 01:04:55 +0200 |
commit | db2b96bd9801d1e9f0dc108520310f9add8df4b7 (patch) | |
tree | 559fa8ce7db8b3cc6b488c1bf8c0411a1b809bb8 /src/main/kotlin/moe/nea/firmament/apis | |
parent | 3b9fd665af85f08f3bcae711f99c49528fc4b666 (diff) | |
download | Firmament-db2b96bd9801d1e9f0dc108520310f9add8df4b7.tar.gz Firmament-db2b96bd9801d1e9f0dc108520310f9add8df4b7.tar.bz2 Firmament-db2b96bd9801d1e9f0dc108520310f9add8df4b7.zip |
Fix custom payload event
[no changelog]
Diffstat (limited to 'src/main/kotlin/moe/nea/firmament/apis')
-rw-r--r-- | src/main/kotlin/moe/nea/firmament/apis/ingame/HypixelModAPI.kt | 4 | ||||
-rw-r--r-- | src/main/kotlin/moe/nea/firmament/apis/ingame/InGameCodecWrapper.kt | 1 |
2 files changed, 5 insertions, 0 deletions
diff --git a/src/main/kotlin/moe/nea/firmament/apis/ingame/HypixelModAPI.kt b/src/main/kotlin/moe/nea/firmament/apis/ingame/HypixelModAPI.kt index 460df91..00e6aa9 100644 --- a/src/main/kotlin/moe/nea/firmament/apis/ingame/HypixelModAPI.kt +++ b/src/main/kotlin/moe/nea/firmament/apis/ingame/HypixelModAPI.kt @@ -6,6 +6,7 @@ package moe.nea.firmament.apis.ingame +import net.hypixel.modapi.fabric.event.HypixelModAPICallback import net.minecraft.network.packet.c2s.common.CustomPayloadC2SPacket import net.minecraft.text.Text import moe.nea.firmament.annotations.Subscribe @@ -30,6 +31,9 @@ object HypixelModAPI : SubscriptionOwner { InGameCodecWrapper.createStealthyCodec( PartyInfoResponse.intoType() ) + HypixelModAPICallback.EVENT.register(HypixelModAPICallback { + MC.sendChat(Text.literal("Official API: $it")) + }) } @JvmStatic diff --git a/src/main/kotlin/moe/nea/firmament/apis/ingame/InGameCodecWrapper.kt b/src/main/kotlin/moe/nea/firmament/apis/ingame/InGameCodecWrapper.kt index 0720dbf..447b902 100644 --- a/src/main/kotlin/moe/nea/firmament/apis/ingame/InGameCodecWrapper.kt +++ b/src/main/kotlin/moe/nea/firmament/apis/ingame/InGameCodecWrapper.kt @@ -35,6 +35,7 @@ class InGameCodecWrapper( override fun decode(buf: PacketByteBuf): CustomPayload { val duplicateBuffer = PacketByteBuf(buf.slice()) val original = wrapped.decode(buf) + buf.skipBytes(buf.readableBytes()) val duplicate = direction.customCodec.decode(duplicateBuffer) if (duplicate is FirmamentCustomPayload.Unhandled) return original |