Jump to content

Proper Debug of "Mismatched mod Channel List"


nbkhwjm

Recommended Posts

Im managing a Minecraft server for the kids.  Ive been running Minecraft servers since the 1.12 days... nothing really hard about it.... (30 year Unix linux admin here - managed dynix through AIX, HPUX, Linux... been doing this awhile...)

 

Then they discover mods......

 

so the server is running and all is fine, then they attempt to connect and we get the "Mismatched mod channel list" more than half the time...  sometime a restart of the server fixes it, usually though we shut it down, come back tomorrow restart and all is fine... ?!?!?!?!

- Checked permissions on all the files, but this doesn't really account for sometimes it works sometimes it doesn't.. (no SeLinux running)

- Running the server on console, and not in Service has no affect either way

- Running as root (I know bad idea) or as normal user with proper access has no affect.

- Client are all "regular" Minecraft installs and forge and no difference in the way they login or run the app vs working or not working..

 

To date all the "solutions" that I see are to do some crazy crap like "copy all the mods from one directory on the client/server to the other" ...  Sorry this isn't a "solution" that's a bunch of crap...  

 

So how can this be debugged? in looking at the logs I don't see an entry that states "missing X mod" or something useful..  Where are the logs that will help to debug this?  I want to learn more about how this system evaluates and communicated the "mod channel list" so I can see what is happening..

 

Server is running: Linux 4.15.0-128-generic #131~16.04.1-Ubuntu SMP Wed Dec 9 17:33:47 UTC 2020 x86_64 x86_64 x86_64 GNU/Linux

Client are all Macs:  MC version 1.14.4 / Forge 28.2.0 / mods are XLife modpack

 

What else you need? 

 

Thanks... 

Frustrated Father (I'm locked in covid style with a Minecraft group that won't run... god help us all.. ) :-)

Link to comment
Share on other sites

Guest
This topic is now closed to further replies.

Announcements



  • Recently Browsing

    • No registered users viewing this page.
  • Posts

    • Yeah, Minecraft.getInstance().player only works on the client side. Is there a way to get the player from the NetworkEvent.Context?
    • I have tried multimc, prism, and curseforge. They all crash without creating any logs.
    • I play with friends a server with mods, funny enough im the only one getting the error. Link to the crash error:https://pastebin.com/Qgn57EXZ
    • I have a keybind where you spit like a llama. On singleplayer both the entity and particle spawn and it's sound is played (https://youtu.be/bpxnFDuWw_I). But on a server only the entity is spawned and nothing else (https://youtu.be/veVQ4zSqnIA), no particles nor sound. Upon starting the server I have noticed this error in the window (https://postimg.cc/K3KDCpMY), don't know if it's relevant. The server works fine but when I want to spit the following pops up in the serverlog '''Attempted to load class net/minecraft/client/player/LocalPlayer for invalid dist DEDICATED_SERVER''' (https://postimg.cc/LqTDP1Sm). I have prepared the following code of the Server-to-Client packet class which I have made to spawn mentioned particles and sounds. package mett.palemannie.tabakmod.networking.packets; import net.minecraft.client.Minecraft; import net.minecraft.core.particles.ParticleTypes; import net.minecraft.network.FriendlyByteBuf; import net.minecraft.sounds.SoundEvents; import net.minecraft.util.RandomSource; import net.minecraft.world.entity.player.Player; import net.minecraft.world.level.Level; import net.minecraft.world.phys.Vec3; import net.minecraftforge.network.NetworkEvent; import java.util.function.Supplier; public class SpuckEffektS2CPacket { public SpuckEffektS2CPacket(){ } public SpuckEffektS2CPacket(FriendlyByteBuf buf){ } public void toBytes(FriendlyByteBuf buf){ } public boolean handle(Supplier<NetworkEvent.Context> supplier){ NetworkEvent.Context context = supplier.get(); context.enqueueWork(()-> { Player player = Minecraft.getInstance().player; //Attempted to load class net/minecraft/client/player/LocalPlayer for invalid dist DEDICATED_SERVER Level level = Minecraft.getInstance().level; RandomSource rdm = RandomSource.create(); float r = rdm.nextInt(80, 120) / 100f; player.playSound(SoundEvents.LLAMA_SPIT, 1f, r); Vec3 MausPos = player.getEyePosition(); Vec3 SchauWinkel = player.getLookAngle(); level.addParticle(ParticleTypes.SPIT, true, MausPos.x, MausPos.y, MausPos.z, SchauWinkel.x/4, SchauWinkel.y/4, SchauWinkel.z/4); }); return true; } } Is there an alternative to Minecraft.getInstance().player;? dumb question. I have looked at other mods (MrCrayfish's Gun Mod, Ars Noveau, Apotheosis) on how they handle such server-to-client sound and particles but I haven't got any wiser.    
    • i keep getting error on minecraft when im trying to play modpack. When i go to logs folder i got this. 
  • Topics

×
×
  • Create New...

Important Information

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