Jump to content

[1.14] Received empty payload on channel fml:handshake


_Cruelar_

Recommended Posts

I know this has been asked many times but why does this keep happening. In the linked post diesieben07 says that this error atleast for NGYF is related to when he registers his packets, which should be done in the FMLCommonSetupEvent, which I do, I checked with the debugger. As I have no clue what is causing this I'll just list when I sent Packets and an example Packet but if you know specific concepts which might cause this feel free to ask for it.

code:

Spoiler

Common Setup Handler:

Spoiler


private void doSetup(final FMLCommonSetupEvent event) {
        CapabilityManager.INSTANCE.register(IFroidCapability.class, new FroidCapabilityStorage(), FroidCapabilityGetter::new);
        CapabilityManager.INSTANCE.register(IHolyCapability.class, new HolyCapabilityStorage(), HolyCapabilityGetter::new);
        proxy.doSetup(event);
        Personaltoolmod_Core.network = NetworkRegistry.newSimpleChannel(
                new ResourceLocation(Personaltoolmod_Core.MODID, "com.cruelar.personaltoolmod"),
                () -> PROTOCOL_VERSION,
                PROTOCOL_VERSION::equals,
                PROTOCOL_VERSION::equals
        );
        ModPackets.registerPackets();
    }

 

Example Item sending a packet:

Spoiler


@Override
    public ActionResult<ItemStack> onItemRightClick(World worldIn, PlayerEntity playerIn, Hand handIn) {
        if (playerIn instanceof ServerPlayerEntity) {
            IFroidCapability froidCapability = playerIn.getCapability(FroidCapabilityProvider.CAPABILITY, null).orElseThrow(() -> new IllegalArgumentException("LazyOptional must not be empty!"));
            froidCapability.setTransformed(!froidCapability.isTransformed());
            Personaltoolmod_Core.network.sendTo(new PacketFroidUpdated(froidCapability.isTransformed()), ((ServerPlayerEntity) playerIn).connection.netManager, NetworkDirection.PLAY_TO_CLIENT);
            Personaltoolmod_Core.logger.log(Level.DEBUG,"Sent FroidPacket with value "+froidCapability.isTransformed());
        }
        return new ActionResult<ItemStack>(ActionResultType.PASS,playerIn.getHeldItem(handIn));
    }

 

Only other place where I send a packet (besides items with same functionality)

Spoiler


@SubscribeEvent
    public static void tick(final TickEvent.PlayerTickEvent e){
        PlayerEntity player = e.player;
        if (player.isAlive()) {
            ArrayList<Item> items = new ArrayList<>();
            items.add(player.getItemStackFromSlot(EquipmentSlotType.HEAD).getItem());
            items.add(player.getItemStackFromSlot(EquipmentSlotType.CHEST).getItem());
            items.add(player.getItemStackFromSlot(EquipmentSlotType.LEGS).getItem());
            items.add(player.getItemStackFromSlot(EquipmentSlotType.FEET).getItem());
            IHolyCapability holy = player.getCapability(HolyCapabilityProvider.CAPABILITY, null).orElseThrow(() -> new IllegalArgumentException("LazyOptional must not be empty!"));
            IFroidCapability froid = player.getCapability(FroidCapabilityProvider.CAPABILITY, null).orElseThrow(() -> new IllegalArgumentException("LazyOptional must not be empty!"));
            if (froid.isTransformed()) {
                player.setInvisible(true);
                player.setInvulnerable(true);
                player.addExhaustion(0.05F);
                if (player.getFoodStats().getFoodLevel()==0&&player instanceof ServerPlayerEntity){
                    froid.setTransformed(false);
                    Personaltoolmod_Core.network.sendTo(new PacketFroidUpdated(froid.isTransformed()), ((ServerPlayerEntity) player).connection.netManager, NetworkDirection.PLAY_TO_CLIENT);
                }
              ...
            }
        }
    }

 

Example Packet with Handler:

Spoiler


public class PacketFroidUpdated implements ICustomPacket {
    boolean transformed;
    
    public PacketFroidUpdated(){
        
    }
    
    public PacketFroidUpdated(boolean transformed){
        this.transformed = transformed;
    }

    public static void encode(PacketFroidUpdated pkt, PacketBuffer buf)
    {
        buf.writeBoolean(pkt.transformed);
        Personaltoolmod_Core.logger.log(Level.DEBUG,"Encoded FroidPacket with value "+pkt.transformed);
    }

    public static PacketFroidUpdated decode(PacketBuffer buf)
    {
        Personaltoolmod_Core.logger.log(Level.DEBUG,"Decoding FroidPacket");
        return new PacketFroidUpdated(buf.readBoolean());
    }

    public static class Handler {
        public static void handle(final PacketFroidUpdated msg, Supplier<NetworkEvent.Context> ctx) {
            ctx.get().enqueueWork(() -> {
                // Work that needs to be threadsafe (most work)
                ClientPlayerEntity sender = Minecraft.getInstance().player; // the client that sent this packet
                // do stuff
                FroidCapabilityGetter playerInfo = (FroidCapabilityGetter) sender.getCapability(FroidCapabilityProvider.CAPABILITY,
                        null).orElseThrow(()->new IllegalArgumentException("LazyOptional must not be empty!"));
                Personaltoolmod_Core.logger.log(Level.DEBUG,"Received FroidPacket with value "+msg.transformed);
                if (playerInfo != null) {
                    playerInfo.setTransformed(msg.transformed);
                }
            });
            ctx.get().setPacketHandled(true);
        }
    }
}

 

 

What happens before the Client complains about this when joining singleplayer worlds

Spoiler


[13:00:40] [Netty Local Client IO #0/TRACE] [ne.mi.fm.lo.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/network/PacketThreadUtil.class got resource net/minecraft/network/PacketThreadUtil.class true
[13:00:40] [Server thread/TRACE] [ne.mi.fm.lo.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/math/Vec2f.class got resource net/minecraft/util/math/Vec2f.class true
[13:00:40] [Server thread/TRACE] [ne.mi.fm.lo.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/text/event/ClickEvent.class got resource net/minecraft/util/text/event/ClickEvent.class true
[13:00:40] [Server thread/TRACE] [ne.mi.fm.lo.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/text/event/ClickEvent$Action.class got resource net/minecraft/util/text/event/ClickEvent$Action.class true
[13:00:40] [Server thread/INFO] [minecraft/MinecraftServer]: Dev joined the game
[13:00:40] [Client thread/TRACE] [ne.mi.fm.lo.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/fml/network/NetworkEvent$RegistrationChangeType.class got resource net/minecraftforge/fml/network/NetworkEvent$RegistrationChangeType.class true
[13:00:41] [Client thread/DEBUG] [ne.mi.fm.ne.FMLLoginWrapper/FMLHANDSHAKE]: Recieved login wrapper packet event for channel fml:handshake with index -1
[13:00:41] [Client thread/ERROR] [ne.mi.fm.ne.si.IndexedMessageCodec/SIMPLENET]: Received empty payload on channel fml:handshake

What happens before the Server complains about this when joining singleplayer worlds

Spoiler

[13:00:41] [Client thread/TRACE] [ne.mi.fm.lo.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/client/gui/screen/AbstractCommandBlockScreen.class got resource net/minecraft/client/gui/screen/AbstractCommandBlockScreen.class true
[13:00:41] [Client thread/TRACE] [ne.mi.fm.lo.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/client/event/PlayerSPPushOutOfBlocksEvent.class got resource net/minecraftforge/client/event/PlayerSPPushOutOfBlocksEvent.class true
[13:00:41] [Client thread/TRACE] [ne.mi.fm.lo.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/client/gui/screen/EditSignScreen.class got resource net/minecraft/client/gui/screen/EditSignScreen.class true
[13:00:41] [Client thread/TRACE] [ne.mi.fm.lo.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/client/gui/screen/CommandBlockScreen.class got resource net/minecraft/client/gui/screen/CommandBlockScreen.class true
[13:00:41] [Client thread/TRACE] [ne.mi.fm.lo.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/client/gui/screen/JigsawScreen.class got resource net/minecraft/client/gui/screen/JigsawScreen.class true
[13:00:41] [Client thread/TRACE] [ne.mi.fm.lo.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/client/gui/screen/EditBookScreen.class got resource net/minecraft/client/gui/screen/EditBookScreen.class true
[13:00:41] [Client thread/TRACE] [ne.mi.fm.lo.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/client/audio/UnderwaterAmbientSoundHandler.class got resource net/minecraft/client/audio/UnderwaterAmbientSoundHandler.class true
[13:00:41] [Client thread/TRACE] [ne.mi.fm.lo.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/client/audio/IAmbientSoundHandler.class got resource net/minecraft/client/audio/IAmbientSoundHandler.class true
[13:00:41] [Client thread/TRACE] [ne.mi.fm.lo.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/client/audio/BubbleColumnAmbientSoundHandler.class got resource net/minecraft/client/audio/BubbleColumnAmbientSoundHandler.class true
[13:00:41] [Client thread/TRACE] [ne.mi.fm.lo.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/client/ClientBrandRetriever.class got resource net/minecraft/client/ClientBrandRetriever.class true
[13:00:41] [Client thread/TRACE] [ne.mi.fm.lo.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/client/ClientGameSession.class got resource net/minecraft/client/ClientGameSession.class true
[13:00:41] [Client thread/TRACE] [ne.mi.fm.lo.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/client/util/RecipeBookCategories.class got resource net/minecraft/client/util/RecipeBookCategories.class true
[13:00:41] [Server thread/DEBUG] [ne.mi.fm.ne.FMLLoginWrapper/FMLHANDSHAKE]: Recieved login wrapper packet event for channel fml:handshake with index -1
[13:00:41] [Server thread/ERROR] [ne.mi.fm.ne.si.IndexedMessageCodec/SIMPLENET]: Received empty payload on channel fml:handshake

What happens before the Client complains about this when joining a multiplayer server

Spoiler

[13:29:19] [Netty Client IO #1/TRACE] [ne.mi.fm.lo.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/client/gui/screen/DemoScreen.class got resource net/minecraft/client/gui/screen/DemoScreen.class true
[13:29:19] [Netty Client IO #1/TRACE] [ne.mi.fm.lo.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/client/particle/ItemPickupParticle.class got resource net/minecraft/client/particle/ItemPickupParticle.class true
[13:29:19] [Netty Client IO #1/TRACE] [ne.mi.fm.lo.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/client/util/NBTQueryManager.class got resource net/minecraft/client/util/NBTQueryManager.class true
[13:29:19] [Netty Client IO #1/TRACE] [ne.mi.fm.lo.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/item/crafting/RecipeManager.class got resource net/minecraft/item/crafting/RecipeManager.class true
[13:29:19] [Netty Client IO #1/TRACE] [ne.mi.fm.lo.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/client/resources/JsonReloadListener.class got resource net/minecraft/client/resources/JsonReloadListener.class true
[13:29:19] [Netty Client IO #1/TRACE] [ne.mi.fm.lo.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/client/multiplayer/ClientAdvancementManager.class got resource net/minecraft/client/multiplayer/ClientAdvancementManager.class true
[13:29:19] [Netty Client IO #1/TRACE] [ne.mi.fm.lo.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/advancements/AdvancementList.class got resource net/minecraft/advancements/AdvancementList.class true
[13:29:19] [Netty Client IO #1/TRACE] [ne.mi.fm.lo.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/client/multiplayer/ClientSuggestionProvider.class got resource net/minecraft/client/multiplayer/ClientSuggestionProvider.class true
[13:29:19] [Netty Client IO #1/TRACE] [ne.mi.fm.lo.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/command/ISuggestionProvider.class got resource net/minecraft/command/ISuggestionProvider.class true
[13:29:19] [Netty Client IO #1/TRACE] [ne.mi.fm.lo.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/network/PacketThreadUtil.class got resource net/minecraft/network/PacketThreadUtil.class true
[13:29:19] [Netty Client IO #1/TRACE] [ne.mi.fm.lo.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/layer/traits/IAreaTransformer1.class got resource net/minecraft/world/gen/layer/traits/IAreaTransformer1.class true
[13:29:19] [Netty Client IO #1/TRACE] [ne.mi.fm.lo.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/layer/traits/IDimTransformer.class got resource net/minecraft/world/gen/layer/traits/IDimTransformer.class true
[13:29:19] [Client thread/TRACE] [ne.mi.fm.lo.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/fml/network/FMLMCRegisterPacketHandler$ChannelList.class got resource net/minecraftforge/fml/network/FMLMCRegisterPacketHandler$ChannelList.class true
[13:29:19] [Netty Client IO #1/TRACE] [ne.mi.fm.lo.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/client/gui/screen/CreateFlatWorldScreen.class got resource net/minecraft/client/gui/screen/CreateFlatWorldScreen.class true
[13:29:19] [Netty Client IO #1/TRACE] [ne.mi.fm.lo.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/client/gui/screen/CreateBuffetWorldScreen.class got resource net/minecraft/client/gui/screen/CreateBuffetWorldScreen.class true
[13:29:19] [Client thread/TRACE] [ne.mi.fm.lo.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/fml/network/NetworkEvent$RegistrationChangeType.class got resource net/minecraftforge/fml/network/NetworkEvent$RegistrationChangeType.class true
[13:29:19] [Client thread/DEBUG] [ne.mi.fm.ne.FMLLoginWrapper/FMLHANDSHAKE]: Recieved login wrapper packet event for channel fml:handshake with index -1
[13:29:19] [Client thread/ERROR] [ne.mi.fm.ne.si.IndexedMessageCodec/SIMPLENET]: Received empty payload on channel fml:handshake
[13:29:19] [Netty Client IO #1/TRACE] [ne.mi.fm.lo.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/item/FireworkRocketItem$Shape.class got resource net/minecraft/item/FireworkRocketItem$Shape.class true
[13:29:19] [Client thread/TRACE] [ne.mi.fm.lo.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/client/multiplayer/PlayerController.class got resource net/minecraft/client/multiplayer/PlayerController.class true
[13:29:19] [Netty Client IO #1/TRACE] [ne.mi.fm.lo.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/tags/Tag$Builder.class got resource net/minecraft/tags/Tag$Builder.class true
[13:29:19] [Netty Client IO #1/TRACE] [ne.mi.fm.lo.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/tags/Tag$ListEntry.class got resource net/minecraft/tags/Tag$ListEntry.class true
[13:29:19] [Netty Client IO #1/TRACE] [ne.mi.fm.lo.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/network/play/server/SCommandListPacket$Entry.class got resource net/minecraft/network/play/server/SCommandListPacket$Entry.class true
[13:29:19] [Netty Client IO #1/TRACE] [ne.mi.fm.lo.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/command/arguments/serializers/StringArgumentSerializer$1.class got resource net/minecraft/command/arguments/serializers/StringArgumentSerializer$1.class true
[13:29:19] [Client thread/TRACE] [ne.mi.fm.lo.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/chunk/AbstractChunkProvider.class got resource net/minecraft/world/chunk/AbstractChunkProvider.class true
[13:29:19] [Netty Client IO #1/TRACE] [ne.mi.fm.lo.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/command/arguments/SuggestionProviders.class got resource net/minecraft/command/arguments/SuggestionProviders.class true
[13:29:19] [Client thread/TRACE] [ne.mi.fm.lo.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/chunk/IChunkLightProvider.class got resource net/minecraft/world/chunk/IChunkLightProvider.class true
[13:29:19] [Client thread/TRACE] [ne.mi.fm.lo.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/client/multiplayer/ClientChunkProvider.class got resource net/minecraft/client/multiplayer/ClientChunkProvider.class true
[13:29:19] [Netty Client IO #1/TRACE] [ne.mi.fm.lo.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/command/arguments/SuggestionProviders$Wrapper.class got resource net/minecraft/command/arguments/SuggestionProviders$Wrapper.class true
[13:29:19] [Client thread/TRACE] [ne.mi.fm.lo.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/ITickList.class got resource net/minecraft/world/ITickList.class true
[13:29:19] [Netty Client IO #1/ERROR] [minecraft/ArgumentTypes]: Could not deserialize minecraft:
[13:29:19] [Netty Client IO #1/ERROR] [minecraft/ArgumentTypes]: Could not deserialize minecraft:

What happens before the Server complains about this when joining a multiplayer server

Spoiler


[13:29:19] [Server thread/INFO] [minecraft/PlayerList]: Dev[/127.0.0.1:55025] logged in with entity id 230 at (-1.2783264809061672, 65.0, -188.52994855352748)
[13:29:19] [Server thread/TRACE] [ne.mi.fm.lo.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/fml/network/FMLMCRegisterPacketHandler$ChannelList.class got resource net/minecraftforge/fml/network/FMLMCRegisterPacketHandler$ChannelList.class true
[13:29:19] [Server thread/TRACE] [ne.mi.fm.lo.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/fml/BrandingControl.class got resource net/minecraftforge/fml/BrandingControl.class true
[13:29:19] [Server thread/TRACE] [ne.mi.fm.lo.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/math/Vec2f.class got resource net/minecraft/util/math/Vec2f.class true
[13:29:19] [Server thread/TRACE] [ne.mi.fm.lo.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/text/event/ClickEvent.class got resource net/minecraft/util/text/event/ClickEvent.class true
[13:29:19] [Server thread/TRACE] [ne.mi.fm.lo.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/text/event/ClickEvent$Action.class got resource net/minecraft/util/text/event/ClickEvent$Action.class true
[13:29:19] [Netty Server IO #2/ERROR] [minecraft/ArgumentTypes]: Could not serialize net.minecraftforge.server.command.ModIdArgument@567442bc (class net.minecraftforge.server.command.ModIdArgument) - will not be sent to client!
[13:29:19] [Netty Server IO #2/ERROR] [minecraft/ArgumentTypes]: Could not serialize net.minecraftforge.server.command.EnumArgument@6203a50d (class net.minecraftforge.server.command.EnumArgument) - will not be sent to client!

[13:29:19] [Server thread/INFO] [minecraft/DedicatedServer]: Dev joined the game
[13:29:19] [Server thread/TRACE] [ne.mi.fm.lo.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/network/play/server/SPlayerPositionLookPacket$Flags.class got resource net/minecraft/network/play/server/SPlayerPositionLookPacket$Flags.class true
[13:29:19] [Netty Server IO #2/TRACE] [ne.mi.fm.lo.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/network/play/server/SPlayerListItemPacket$1.class got resource net/minecraft/network/play/server/SPlayerListItemPacket$1.class true
[13:29:19] [Server thread/TRACE] [ne.mi.fm.lo.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/scoreboard/Score.class got resource net/minecraft/scoreboard/Score.class true
[13:29:19] [Server thread/TRACE] [ne.mi.fm.lo.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/common/util/NonNullConsumer.class got resource net/minecraftforge/common/util/NonNullConsumer.class true
[13:29:20] [Server thread/TRACE] [ne.mi.fm.lo.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/spawner/WorldEntitySpawner.class got resource net/minecraft/world/spawner/WorldEntitySpawner.class true
[13:29:20] [Server thread/TRACE] [ne.mi.fm.lo.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/EntitySpawnPlacementRegistry.class got resource net/minecraft/entity/EntitySpawnPlacementRegistry.class true
[13:29:20] [Server thread/TRACE] [ne.mi.fm.lo.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/EntitySpawnPlacementRegistry$PlacementType.class got resource net/minecraft/entity/EntitySpawnPlacementRegistry$PlacementType.class true
[13:29:20] [Server thread/TRACE] [ne.mi.fm.lo.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/SpawnReason.class got resource net/minecraft/entity/SpawnReason.class true
[13:29:20] [Server thread/TRACE] [ne.mi.fm.lo.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/EntitySpawnPlacementRegistry$IPlacementPredicate.class got resource net/minecraft/entity/EntitySpawnPlacementRegistry$IPlacementPredicate.class true
[13:29:20] [Server thread/TRACE] [ne.mi.fm.lo.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/EntitySpawnPlacementRegistry$Entry.class got resource net/minecraft/entity/EntitySpawnPlacementRegistry$Entry.class true
[13:29:20] [Server thread/TRACE] [ne.mi.fm.lo.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/spawner/WorldEntitySpawner$1.class got resource net/minecraft/world/spawner/WorldEntitySpawner$1.class true
[13:29:20] [Server thread/TRACE] [ne.mi.fm.lo.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/DifficultyInstance.class got resource net/minecraft/world/DifficultyInstance.class true
[13:29:20] [Server thread/TRACE] [ne.mi.fm.lo.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/monster/ZombieEntity$GroupData.class got resource net/minecraft/entity/monster/ZombieEntity$GroupData.class true
[13:29:20] [Netty Server IO #2/TRACE] [ne.mi.fm.lo.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/network/play/server/SWorldBorderPacket$1.class got resource net/minecraft/network/play/server/SWorldBorderPacket$1.class true
[13:29:20] [Server thread/TRACE] [ne.mi.fm.lo.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/merchant/villager/VillagerData.class got resource net/minecraft/entity/merchant/villager/VillagerData.class true
[13:29:21] [Netty Server IO #2/TRACE] [ne.mi.fm.lo.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/network/PacketThreadUtil.class got resource net/minecraft/network/PacketThreadUtil.class true
[13:29:21] [Server thread/TRACE] [ne.mi.fm.lo.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/fml/network/NetworkEvent$RegistrationChangeType.class got resource net/minecraftforge/fml/network/NetworkEvent$RegistrationChangeType.class true
[13:29:21] [Server thread/DEBUG] [ne.mi.fm.ne.FMLLoginWrapper/FMLHANDSHAKE]: Recieved login wrapper packet event for channel fml:handshake with index -1
[13:29:21] [Server thread/ERROR] [ne.mi.fm.ne.si.IndexedMessageCodec/SIMPLENET]: Received empty payload on channel fml:handshake

 

My Projects:

Cruelars Triforcemod (1.12 release; 1.14 alpha soon coming)

 

Important:

As my mod is on at least 10 different third party sites without my permission, I want to warn you about that with a link to StopModReposts

Link to comment
Share on other sites

1 hour ago, _Cruelar_ said:

Common Setup Handler:

If I recall correctly you need to use DeferredWorkQueue.runLaterDeffered in the mod life-cycle events because they run on a separate thread. But I honestly don't know what is causing your problem. Could be the lack of sleep I have.

VANILLA MINECRAFT CLASSES ARE THE BEST RESOURCES WHEN MODDING

I will be posting 1.15.2 modding tutorials on this channel. If you want to be notified of it do the normal YouTube stuff like subscribing, ect.

Forge and vanilla BlockState generator.

Link to comment
Share on other sites

What exactly should I run through that as this didn't solve it

private void doSetup(final FMLCommonSetupEvent event) {
        CapabilityManager.INSTANCE.register(IFroidCapability.class, new FroidCapabilityStorage(), FroidCapabilityGetter::new);
        CapabilityManager.INSTANCE.register(IHolyCapability.class, new HolyCapabilityStorage(), HolyCapabilityGetter::new);
        proxy.doSetup(event);
        DeferredWorkQueue.runLater(()-> {
            Personaltoolmod_Core.network = NetworkRegistry.newSimpleChannel(
                    new ResourceLocation(Personaltoolmod_Core.MODID, "com.cruelar.personaltoolmod"),
                    () -> PROTOCOL_VERSION,
                    PROTOCOL_VERSION::equals,
                    PROTOCOL_VERSION::equals
            );
            ModPackets.registerPackets();
        });
    }

Thanks for the effort, and sorry if I'm just stupid with this.

My Projects:

Cruelars Triforcemod (1.12 release; 1.14 alpha soon coming)

 

Important:

As my mod is on at least 10 different third party sites without my permission, I want to warn you about that with a link to StopModReposts

Link to comment
Share on other sites

5 minutes ago, _Cruelar_ said:

What exactly should I run through that as this didn't solve it

Everything that needs to be done on the main thread. Anything that interacts with Minecraft/Minecraft Forge directly I believe. This includes your Capability registration.

Also I didn't expect it to solve it. What exactly is the problem though? Does that error actually even mean anything? Like are your packets working or not?

VANILLA MINECRAFT CLASSES ARE THE BEST RESOURCES WHEN MODDING

I will be posting 1.15.2 modding tutorials on this channel. If you want to be notified of it do the normal YouTube stuff like subscribing, ect.

Forge and vanilla BlockState generator.

Link to comment
Share on other sites

Originally it prevented me from joining my testserver but since moving some Common code which checked the capabilities, that I'd left in the ClientTick event although better suited in another eventhandler it stopped that might just have been some logical side breaking then, I just hoped to prevent problems with multiplayer by fixing this here as I'm not sure if it is able to break my mod on servers as this mod is designed to run on a server

My Projects:

Cruelars Triforcemod (1.12 release; 1.14 alpha soon coming)

 

Important:

As my mod is on at least 10 different third party sites without my permission, I want to warn you about that with a link to StopModReposts

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Announcements



×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.