From cd1826a49822e7be0fb583e7b540270560fb657d Mon Sep 17 00:00:00 2001 From: Linnea Gräf Date: Fri, 14 Jun 2024 15:02:09 +0200 Subject: Fix global textures not working in hotbar --- src/main/kotlin/moe/nea/firmament/apis/ingame/HypixelModAPI.kt | 4 ---- 1 file changed, 4 deletions(-) (limited to 'src/main/kotlin/moe/nea/firmament/apis/ingame') 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 00e6aa9..460df91 100644 --- a/src/main/kotlin/moe/nea/firmament/apis/ingame/HypixelModAPI.kt +++ b/src/main/kotlin/moe/nea/firmament/apis/ingame/HypixelModAPI.kt @@ -6,7 +6,6 @@ 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 @@ -31,9 +30,6 @@ object HypixelModAPI : SubscriptionOwner { InGameCodecWrapper.createStealthyCodec( PartyInfoResponse.intoType() ) - HypixelModAPICallback.EVENT.register(HypixelModAPICallback { - MC.sendChat(Text.literal("Official API: $it")) - }) } @JvmStatic -- cgit