Search the Community
Showing results for tags 'client-only mods on server'.
-
I try to get some information about other players when joining a server. For example, I want to listen to the `AttackEntityEvent` to observe if one player hits another. However, this event works only if my own player hits other entities. Also, I want to read the information in the chat on a server with `ClientChatReceivedEvent` but that only works in Singleplayer. I know these problems are kind of separate ones but maybe they are linked because I register my Event listeners in a wrong way. I don't know. I have the same problem with many other events like `ArrowNockEvent`, `LivingHurtEvent`. The only event that works correctly is my `TickEvent.PlayerTickEvent`. Could you help me please. Are these events wrong? If so, are they other events that I can consider? If not, how can I gather information about other players on the server? Thanks for your help! @Mod(Main.MODID) public class Main { // Define mod id in a common place for everything to reference public static final String MODID = "tttdatacollector"; // Directly reference a slf4j logger private static final Logger LOGGER = LogUtils.getLogger(); public Main(FMLJavaModLoadingContext context) { IEventBus modEventBus = context.getModEventBus(); // Register the commonSetup method for modloading modEventBus.addListener(this::commonSetup); // Register ourselves for server and other game events we are interested in MinecraftForge.EVENT_BUS.register(this); MinecraftForge.EVENT_BUS.register(new PlayerTickEventHandler()); MinecraftForge.EVENT_BUS.register(new PlayerHurtEventHandler()); MinecraftForge.EVENT_BUS.register(new PlayerAttackEntityEventHandler()); MinecraftForge.EVENT_BUS.register(new ChatMessageEventHandler()); MinecraftForge.EVENT_BUS.register(new KillEventHandler()); } } public class ChatMessageEventHandler { private static final Logger log = LogUtils.getLogger(); @SubscribeEvent public void onChatMessageServer(ClientChatReceivedEvent event) { log.info("ClientChatReceivedEvent"); log.info(event.getMessage().getString()); } } public class BowShotEventHandler { private static final Logger log = LogUtils.getLogger(); @SubscribeEvent public void onArrowNock(ArrowNockEvent event) { log.info("onArrowNock"); if (event.getEntity() instanceof ServerPlayer player) { log.info("Player nocked an arrow: {}", player.getName().getString()); } } } public class PlayerAttackEntityEventHandler { private static final Logger log = LogUtils.getLogger(); @SubscribeEvent public void onPlayerAttack(AttackEntityEvent event) { log.info("Player Attack by {} to {}", event.getEntity().getName().getString(), event.getTarget().getName().getString()); } } public class PlayerTickEventHandler { private static final Logger log = LogUtils.getLogger(); private final AggregatedPlayerDataCache aggregatedPlayerDataCache = AggregatedPlayerDataCache.getInstance(); private final PlayerPositionCache playerPositionCache = PlayerPositionCache.getInstance(); private final PlayerDistanceScoreCalculator playerDistanceScoreCalculator = PlayerDistanceScoreCalculator.getInstance(); @SubscribeEvent public void onPlayerTick(TickEvent.PlayerTickEvent event) { var player = event.player; String playerName = player.getName().getString(); var playerData = aggregatedPlayerDataCache.getPlayerData(playerName); playerData.setPlayerName(playerName); var oldPos = playerPositionCache.getPlayerPosition(playerName); this.calculateAndSetDistanceAndScore(oldPos, playerData, player); } }
-
This is the error from the console: ███╗ ███╗ ██████╗ ██╗ ██╗ ██╗ ███████╗ ████████╗ ████╗ ████║ ██╔═══██╗ ██║ ██║ ██║ ██╔════╝ ╚══██╔══╝ ██╔████╔██║ ██║ ██║ ███████║ ██║ ███████╗ ██║ ██║╚██╔╝██║ ██║ ██║ ██╔══██║ ██║ ╚════██║ ██║ ██║ ╚═╝ ██║ ╚██████╔╝ ██║ ██║ ██║ ███████║ ██║ ╚═╝ ╚═╝ ╚═════╝ ╚═╝ ╚═╝ ╚═╝ ╚══════╝ ╚═╝ Thanks for using Mohist - 1.20.1-541, Java(19.0.2) 63.0 Update in check... If you don't want to enable update check, set check_update in mohist-config/mohist.yml to false The latest Mohist version is 1.20.1-542 but you have 1.20.1-541. The latest version has been built on 2023-12-21 12:18:01. You should update to fix recent bugs! Checking libraries, please wait... All libraries are nice :)! Searching incompatible mods... [13:03:58 INFO]: ModLauncher running: args [--launchTarget, forgeserver, --fml.forgeVersion, 47.2.17, --fml.mcVersion, 1.20.1, --fml.forgeGroup, net.minecraftforge, --fml.mcpVersion, 20230612.114412, nogui] [13:03:58 INFO]: ModLauncher 10.0.9+10.0.9+main.dcd20f30 starting: java version 19.0.2 by Oracle Corporation; OS Windows 10 arch amd64 version 10.0 [13:04:00 INFO]: ImmediateWindowProvider not loading because launch target is forgeserver [13:04:00 INFO]: Mixin Transmogrifier is definitely up to no good... [13:04:00 INFO]: crimes against java were committed [13:04:00 INFO]: Original mixin transformation service successfully crobbed by mixin-transmogrifier! [13:04:00 INFO]: SpongePowered MIXIN Subsystem Version=0.8.5 Source=union:/F:/Mattia/servermod/mods/Connector-1.0.0-beta.31+1.20.1.jar%23260%23263!/ Service=ModLauncher Env=SERVER [13:04:01 WARN]: Attempted to select two dependency jars from JarJar which have the same identification: Mod File: and Mod File: . Using Mod File: [13:04:01 WARN]: Attempted to select a dependency jar for JarJar which was passed in as source: curios. Using Mod File: F:\Mattia\servermod\mods\curios-forge-5.4.6+1.20.1.jar [13:04:01 INFO]: Found 56 dependencies adding them to mods collection [13:04:04 INFO]: Dependency resolution found 4 candidates to load [13:04:05 INFO]: Successfully made module authlib transformable [13:04:07 INFO]: Compatibility level set to JAVA_17 [13:04:08 INFO]: Launching target 'forgeserver' with arguments [nogui] [13:04:08 INFO]: Loaded configuration file for ModernFix 5.10.1+mc1.20.1: 72 options available, 0 override(s) found [13:04:08 INFO]: Applying Nashorn fix [13:04:08 INFO]: Applied Forge config corruption patch [13:04:08 WARN]: Reference map 'morevillagers-forge-forge-refmap.json' for morevillagers.mixins.json could not be read. If this is a development environment you can ignore this message [13:04:08 WARN]: Reference map 'oculus-refmap.json' for mixins.oculus.compat.json could not be read. If this is a development environment you can ignore this message [13:04:08 WARN]: Reference map 'nitrogen_internals.refmap.json' for nitrogen_internals.mixins.json could not be read. If this is a development environment you can ignore this message [13:04:08 INFO]: Loaded configuration file for Canary: 123 options available, 0 override(s) found [13:04:08 WARN]: Reference map 'mvs-forge-refmap.json' for mvs-forge.mixins.json could not be read. If this is a development environment you can ignore this message [13:04:08 WARN]: Reference map 'cristellib-forge-refmap.json' for cristellib.mixins.json could not be read. If this is a development environment you can ignore this message [13:04:10 INFO]: Patching IForgeItemStack#getEnchantmentLevel [13:04:10 INFO]: Patching IForgeItemStack#getEnchantmentLevel [13:04:13 INFO]: Loaded config for: structureessentials.json [13:04:15 INFO]: Replaced 2 calls to Enchantment#getMaxLevel() in net/minecraft/world/inventory/AnvilMenu [13:04:15 INFO]: Patching IForgeItemStack#getEnchantmentLevel [13:04:15 INFO]: Patching IForgeItemStack#getEnchantmentLevel [13:04:16 WARN]: Error loading class: com/hollingsworth/arsnouveau/common/items/SpellCrossbow (java.lang.ClassNotFoundException: com.hollingsworth.arsnouveau.common.items.SpellCrossbow) [13:04:16 ERROR]: Attempted to load class net/minecraft/client/MouseHandler for invalid dist DEDICATED_SERVER [13:04:16 WARN]: Error loading class: net/minecraft/client/MouseHandler (java.lang.RuntimeException: Attempted to load class net/minecraft/client/MouseHandler for invalid dist DEDICATED_SERVER) [13:04:16 WARN]: @Mixin target net.minecraft.client.MouseHandler was not found fabric-screen-api-v1.mixins.json:MouseMixin from mod fabric_screen_api_v1 [13:04:16 ERROR]: Attempted to load class net/minecraft/client/gui/screens/Screen for invalid dist DEDICATED_SERVER [13:04:16 WARN]: Error loading class: net/minecraft/client/gui/screens/Screen (java.lang.RuntimeException: Attempted to load class net/minecraft/client/gui/screens/Screen for invalid dist DEDICATED_SERVER) [13:04:16 WARN]: @Mixin target net.minecraft.client.gui.screens.Screen was not found fabric-screen-api-v1.mixins.json:ScreenAccessor from mod fabric_screen_api_v1 [13:04:29 INFO]: Initializing MixinExtras via com.llamalad7.mixinextras.service.MixinExtrasServiceImpl(version=0.3.1). [13:04:33 INFO]: ModernFix reached bootstrap stage (40.93 s after launch) [13:04:35 INFO]: Injecting BlockStateBase cache population hook into getNeighborPathNodeType from com.abdelaziz.canary.mixin.ai.pathing.BlockStateBaseMixin [13:04:35 INFO]: Injecting BlockStateBase cache population hook into getPathNodeType from com.abdelaziz.canary.mixin.ai.pathing.BlockStateBaseMixin [13:04:35 INFO]: Injecting BlockStateBase cache population hook into getAllFlags from com.abdelaziz.canary.mixin.util.block_tracking.BlockStateBaseMixin Exception in thread "main" java.lang.RuntimeException: java.lang.reflect.InvocationTargetException at MC-BOOTSTRAP/[email protected]/cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:32) at MC-BOOTSTRAP/[email protected]/cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:53) at MC-BOOTSTRAP/[email protected]/cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:71) at MC-BOOTSTRAP/[email protected]/cpw.mods.modlauncher.Launcher.run(Launcher.java:108) at MC-BOOTSTRAP/[email protected]/cpw.mods.modlauncher.Launcher.main(Launcher.java:78) at MC-BOOTSTRAP/[email protected]/cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:26) at MC-BOOTSTRAP/[email protected]/cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:23) at [email protected]/cpw.mods.bootstraplauncher.BootstrapLauncher.main(BootstrapLauncher.java:141) at com.mohistmc.MohistMCStart.main(MohistMCStart.java:104) Caused by: java.lang.reflect.InvocationTargetException at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:119) at java.base/java.lang.reflect.Method.invoke(Method.java:578) at MC-BOOTSTRAP/[email protected]/net.minecraftforge.fml.loading.targets.CommonLaunchHandler.runTarget(CommonLaunchHandler.java:111) at MC-BOOTSTRAP/[email protected]/net.minecraftforge.fml.loading.targets.CommonLaunchHandler.serverService(CommonLaunchHandler.java:103) at MC-BOOTSTRAP/[email protected]/net.minecraftforge.fml.loading.targets.CommonServerLaunchHandler.lambda$makeService$0(CommonServerLaunchHandler.java:27) at MC-BOOTSTRAP/[email protected]/cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:30) ... 8 more Caused by: java.lang.NoClassDefFoundError: net/minecraft/world/level/block/LiquidBlock at TRANSFORMER/[email protected]/net.minecraft.world.level.block.FireBlock.m_53484_(FireBlock.java:358) at TRANSFORMER/[email protected]/net.minecraft.server.Bootstrap.m_135870_(Bootstrap.java:46) at TRANSFORMER/[email protected]/net.minecraft.server.Main.main(Main.java:161) at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:104) ... 13 more Caused by: java.lang.ClassNotFoundException: net.minecraft.world.level.block.LiquidBlock at cpw.mods.securejarhandler/cpw.mods.cl.ModuleClassLoader.loadClass(ModuleClassLoader.java:157) at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:521) ... 17 more This is the error from the log: [13:03:58] [main/INFO] [cpw.mods.modlauncher.Launcher]: ModLauncher running: args [--launchTarget, forgeserver, --fml.forgeVersion, 47.2.17, --fml.mcVersion, 1.20.1, --fml.forgeGroup, net.minecraftforge, --fml.mcpVersion, 20230612.114412, nogui] [13:03:58] [main/INFO] [cpw.mods.modlauncher.Launcher]: ModLauncher 10.0.9+10.0.9+main.dcd20f30 starting: java version 19.0.2 by Oracle Corporation; OS Windows 10 arch amd64 version 10.0 [13:04:00] [main/INFO] [net.minecraftforge.fml.loading.ImmediateWindowHandler]: ImmediateWindowProvider not loading because launch target is forgeserver [13:04:00] [main/INFO] [mixin-transmog]: Mixin Transmogrifier is definitely up to no good... [13:04:00] [main/INFO] [mixin-transmog]: crimes against java were committed [13:04:00] [main/INFO] [mixin-transmog]: Original mixin transformation service successfully crobbed by mixin-transmogrifier! [13:04:00] [main/INFO] [mixin]: SpongePowered MIXIN Subsystem Version=0.8.5 Source=union:/F:/Mattia/servermod/mods/Connector-1.0.0-beta.31+1.20.1.jar%23260%23263!/ Service=ModLauncher Env=SERVER [13:04:01] [main/WARN] [net.minecraftforge.jarjar.selection.JarSelector]: Attempted to select two dependency jars from JarJar which have the same identification: Mod File: and Mod File: . Using Mod File: [13:04:01] [main/WARN] [net.minecraftforge.jarjar.selection.JarSelector]: Attempted to select a dependency jar for JarJar which was passed in as source: curios. Using Mod File: F:\Mattia\servermod\mods\curios-forge-5.4.6+1.20.1.jar [13:04:01] [main/INFO] [net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator]: Found 56 dependencies adding them to mods collection [13:04:04] [main/INFO] [dev.su5ed.sinytra.connector.locator.DependencyResolver]: Dependency resolution found 4 candidates to load [13:04:05] [main/INFO] [dev.su5ed.sinytra.connector.service.ModuleLayerMigrator]: Successfully made module authlib transformable [13:04:07] [main/INFO] [mixin]: Compatibility level set to JAVA_17 [13:04:08] [main/INFO] [cpw.mods.modlauncher.LaunchServiceHandler]: Launching target 'forgeserver' with arguments [nogui] [13:04:08] [main/INFO] [ModernFix]: Loaded configuration file for ModernFix 5.10.1+mc1.20.1: 72 options available, 0 override(s) found [13:04:08] [main/INFO] [ModernFix]: Applying Nashorn fix [13:04:08] [main/INFO] [ModernFix]: Applied Forge config corruption patch [13:04:08] [main/WARN] [mixin]: Reference map 'morevillagers-forge-forge-refmap.json' for morevillagers.mixins.json could not be read. If this is a development environment you can ignore this message [13:04:08] [main/WARN] [mixin]: Reference map 'oculus-refmap.json' for mixins.oculus.compat.json could not be read. If this is a development environment you can ignore this message [13:04:08] [main/WARN] [mixin]: Reference map 'nitrogen_internals.refmap.json' for nitrogen_internals.mixins.json could not be read. If this is a development environment you can ignore this message [13:04:08] [main/INFO] [Canary]: Loaded configuration file for Canary: 123 options available, 0 override(s) found [13:04:08] [main/WARN] [mixin]: Reference map 'mvs-forge-refmap.json' for mvs-forge.mixins.json could not be read. If this is a development environment you can ignore this message [13:04:08] [main/WARN] [mixin]: Reference map 'cristellib-forge-refmap.json' for cristellib.mixins.json could not be read. If this is a development environment you can ignore this message [13:04:10] [main/INFO] [net.minecraftforge.coremod.CoreMod.placebo]: Patching IForgeItemStack#getEnchantmentLevel [13:04:10] [main/INFO] [net.minecraftforge.coremod.CoreMod.placebo]: Patching IForgeItemStack#getEnchantmentLevel [13:04:13] [main/INFO] [com.cupboard.Cupboard]: Loaded config for: structureessentials.json [13:04:15] [main/INFO] [net.minecraftforge.coremod.CoreMod.apotheosis]: Replaced 2 calls to Enchantment#getMaxLevel() in net/minecraft/world/inventory/AnvilMenu [13:04:15] [main/INFO] [net.minecraftforge.coremod.CoreMod.placebo]: Patching IForgeItemStack#getEnchantmentLevel [13:04:15] [main/INFO] [net.minecraftforge.coremod.CoreMod.placebo]: Patching IForgeItemStack#getEnchantmentLevel [13:04:16] [main/WARN] [mixin]: Error loading class: com/hollingsworth/arsnouveau/common/items/SpellCrossbow (java.lang.ClassNotFoundException: com.hollingsworth.arsnouveau.common.items.SpellCrossbow) [13:04:16] [main/ERROR] [net.minecraftforge.fml.loading.RuntimeDistCleaner]: Attempted to load class net/minecraft/client/MouseHandler for invalid dist DEDICATED_SERVER [13:04:16] [main/WARN] [mixin]: Error loading class: net/minecraft/client/MouseHandler (java.lang.RuntimeException: Attempted to load class net/minecraft/client/MouseHandler for invalid dist DEDICATED_SERVER) [13:04:16] [main/WARN] [mixin]: @Mixin target net.minecraft.client.MouseHandler was not found fabric-screen-api-v1.mixins.json:MouseMixin from mod fabric_screen_api_v1 [13:04:16] [main/ERROR] [net.minecraftforge.fml.loading.RuntimeDistCleaner]: Attempted to load class net/minecraft/client/gui/screens/Screen for invalid dist DEDICATED_SERVER [13:04:16] [main/WARN] [mixin]: Error loading class: net/minecraft/client/gui/screens/Screen (java.lang.RuntimeException: Attempted to load class net/minecraft/client/gui/screens/Screen for invalid dist DEDICATED_SERVER) [13:04:16] [main/WARN] [mixin]: @Mixin target net.minecraft.client.gui.screens.Screen was not found fabric-screen-api-v1.mixins.json:ScreenAccessor from mod fabric_screen_api_v1 [13:04:29] [main/INFO] [MixinExtras|Service]: Initializing MixinExtras via com.llamalad7.mixinextras.service.MixinExtrasServiceImpl(version=0.3.1). [13:04:33] [main/INFO] [net.minecraft.server.Bootstrap]: ModernFix reached bootstrap stage (40.93 s after launch) [13:04:35] [main/INFO] [ModernFix]: Injecting BlockStateBase cache population hook into getNeighborPathNodeType from com.abdelaziz.canary.mixin.ai.pathing.BlockStateBaseMixin [13:04:35] [main/INFO] [ModernFix]: Injecting BlockStateBase cache population hook into getPathNodeType from com.abdelaziz.canary.mixin.ai.pathing.BlockStateBaseMixin [13:04:35] [main/INFO] [ModernFix]: Injecting BlockStateBase cache population hook into getAllFlags from com.abdelaziz.canary.mixin.util.block_tracking.BlockStateBaseMixin HELP ME PLS!
-
I created a custom minecraft modpack and tried to put it into a server, I put the mods into the server mods folder and started it, tried removing some of the client sode mods, and now I'm here. I tried research and it didnt help. Any help would be appreciated. https://raw.githubusercontent.com/alphadecay21/Minecraft-Troubleshooting/main/Help plz (Used Github bc pastbin hated me)
-
Hello everyone, I made a custom 1.20.1 minecraft modpack to play with my friends, The modpack works without any problems in single player, so I uploaded it to my server, but when I try to log in, I can't join and it gives me "Internal Execption : io.netty.handlerDecoderExecption" errors, I tried to remove some Client sided mods to the modpack but I still can't join the server, Here is the modlist : https://pastebin.com/8A3VHV8s When i load the server i get a lot of "[Server thread/ERROR] [ne.mi.fm.lo.RuntimeDistCleaner/DISTXFORM]: Attempted to load class net/minecraft/client/renderer/RenderType for invalid dist DEDICATED_SERVER" and "[Server thread/ERROR] [ne.mi.fm.lo.RuntimeDistCleaner/DISTXFORM]: Attempted to load class net/minecraft/client/multiplayer/ClientLevel for invalid dist DEDICATED_SERVER" i cant even do a Pastebin of the console.log file cause it's too big.. Here is every log i can find on my server : https://github.com/Equiimox/ftb-serg-help/tree/main Can somebody help me find what I did wrong?, maybe I missed some client side mods... Thank you
-
I use Bisect-Hosting, and I host a relatively modded server. There is a mod I desperately want to have in a server. https://www.curseforge.com/minecraft/mc-mods/minehoplite This is MineHop. It's a mod that replicates the movement capabilities seen in Source Engine games, such as Half-Life, and such. https://youtu.be/SbtLo7VbOvk - A video explaining the mod, if anyone is interested. It is a clientside mod, meaning whoever is using it can change anything about the mod that they want, with no restrictions, even when they join a server with the same mod. They can change it to where they can go infinitely fast, or do some other overpowered thing. I don't want that to happen. So I just want to know if there is some way to force the SERVER'S configuration file, onto whoever is joining. I'm not very savvy with all this modding stuff. There are two config files: minehop-common.txt, and minehop.txt I don't really know much about how each are different. I just know what the commands relating to acceleration and stuff mean.
-
The server does not start with mods. forge kernel, version 1.19.2. Here's the log: https://drive.google.com/file/d/1iost6poFQCky0yTN_MMGifja--3di3cI/view?usp=sharing
-
I can't start my modded 1.18.2 minecraft server because I think it keeps crashing or something. Here's all the code lines from CMD: https://paste.ee/p/Rm2bU
-
Hey, i bought today a server from bisecthost and can't start the server without problems... the minecraft launcher says the server is online but everytime i try to start it shows me "internal server error" and the console says: "[Netty Epoll Server IO #1/WARN] [ne.mi.fm.ne.FMLStatusPing/]: Heuristically truncating mod and/or network channel list in server status ping packet. Compatibility report in the multiplayer screen may be inaccurate."
-
this is my server logs: https://mclo.gs/jsTStgZ
-
Hi there, after recently creating a custom server for my friends and I to play on, I noticed that several of the mods were corrupted and weren't loading all of the necessary details and blocks to make its object. We had used DeceasedCraft as a test and every time we loaded the server, it would corrupt the surrounding areas and never spawn the full cities as it is supposed to. I tested the mods on a singleplayer server and it worked amazing, everything loaded in and ran perfectly fine. I have found that it is not the placement of mods that is causing it to corrupt but I am genuinely confused as to what I am doing wrong here. If anyone could assist me further with this and allow me to officially open my server to me and my friend group. Thank you
-
- 1.18.2
- client-only mods on server
-
(and 1 more)
Tagged with:
-
crash report: https://pastebin.com/1YxbTnMx for some reason sophisticatedCore wouldn't load I'm using a modpack called MineColonies: Croptoria (https://www.curseforge.com/minecraft/modpacks/croptoria) but with some few tweaks to the modlist. mods added are: alex's mob and cave mods removed (unnecessary client-side mods): cull leaves 3.2.0 freecam 1.2.1 midnightlib 1.4.1 lootbeams 1.2.2 oculus 1.6.9 justzoom 1.0.2 entity culling 1.6.2 embeddium 0.2.1 controlling 12.0.2 Better Fps - Render Distance 3.8 better advancements 0.3.2.161 appleskin 2.5.1
-
i tried to open a server with forge in exaroton but it crashed please help server logs: https://mclo.gs/IHhQFto
-
Recent testing for a new minecraft modpack has been hitting a snag. the beta version of https://www.curseforge.com/minecraft/modpacks/growing-villages-2 i have been running into issues with a few errors i cant seem to get past. see logs latest https://pastebin.com/jqWtHtw5 Debug https://drive.google.com/file/d/1hf6S3NMrZ50KT3TTmxfPQTA63I3ljPLs/view?usp=sharing specificly lines such as [02Dec2023 21:10:32.700] [Server thread/WARN] [net.dries007.tfc.util.calendar.Calendar/]: Calendar is out of sync - trying to fix: Calendar = false, Daylight = false, Sync = 6 Attempted to load class net/minecraft/client/Minecraft for invalid dist DEDICATED_SERVER [main/WARN] [mixin/]: Error loading class: vectorwing/farmersdelight/client/renderer/CanvasSignRenderer (a mod i have removed entirely. ) i am unable to get the server to load to the point a client can connect but client side works as normal. it feels like a client mod is still enabled but i cant seem to trace it down. any help is appreciated.
-
I dont rly know what i have to to, want to play Mc in Forge 40.2.14 Mc Version 1.18.2 https://pastebin.com/6j5cHMbe Mod List: https://pastebin.com/8301Qfge
-
I'm having a problem with me crashing constantly, I know it is due to a mod called Figura but a different mod is causing it to crash I believe... Logs: https://mclo.gs/9GIgIWs
-
My prominence II server wont start up https://paste.ee/p/eMRYp
-
Just as the title says, I have a custom modpack with 114 mods that I'm trying to run a server with. I did test, and it does work in a single-player world, but I can't figure out what would be the problem serverside. https://jpst.it/3vHxX This is the crash report, I notice an error at the top of course but I couldn't find information online that I could understand on what it means.
-
So the title kinda says it all. So here's the crash report: Crash Report
-
i dont know what to do pls help me here the crash report: https://pastebin.com/jmtAiMKF (im in 1.12.2)