mirror of
https://github.com/FabricMC/fabric.git
synced 2025-04-03 10:39:57 -04:00
Fix TAGS_LOADED event not being invoked on client join
This commit is contained in:
parent
5c013344f0
commit
eabbae365d
1 changed files with 5 additions and 10 deletions
|
@ -26,7 +26,6 @@ import net.minecraft.block.entity.BlockEntity;
|
|||
import net.minecraft.client.network.ClientPlayNetworkHandler;
|
||||
import net.minecraft.client.world.ClientWorld;
|
||||
import net.minecraft.entity.Entity;
|
||||
import net.minecraft.network.packet.s2c.common.SynchronizeTagsS2CPacket;
|
||||
import net.minecraft.network.packet.s2c.play.GameJoinS2CPacket;
|
||||
import net.minecraft.network.packet.s2c.play.PlayerRespawnS2CPacket;
|
||||
import net.minecraft.world.chunk.WorldChunk;
|
||||
|
@ -96,16 +95,12 @@ abstract class ClientPlayNetworkHandlerMixin {
|
|||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Also invoked during GameJoin, but before Networking API fires the Ready event.
|
||||
*/
|
||||
@SuppressWarnings("ConstantConditions")
|
||||
@Inject(
|
||||
method = "onSynchronizeTags",
|
||||
at = @At(
|
||||
value = "INVOKE",
|
||||
target = "Lnet/minecraft/client/network/ClientCommonNetworkHandler;onSynchronizeTags(Lnet/minecraft/network/packet/s2c/common/SynchronizeTagsS2CPacket;)V",
|
||||
shift = At.Shift.AFTER, by = 1
|
||||
)
|
||||
)
|
||||
private void hookOnSynchronizeTags(SynchronizeTagsS2CPacket packet, CallbackInfo ci) {
|
||||
@Inject(method = "refreshTagBasedData", at = @At("RETURN"))
|
||||
private void hookOnSynchronizeTags(CallbackInfo ci) {
|
||||
ClientPlayNetworkHandler self = (ClientPlayNetworkHandler) (Object) this;
|
||||
CommonLifecycleEvents.TAGS_LOADED.invoker().onTagsLoaded(self.getRegistryManager(), true);
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue