FallingTree

FallingTree

28M Downloads

Mod works client side, but not in forge server.

Arcuhm opened this issue · 7 comments

commented

Describe the bug
A clear and concise description of what the bug is.
Mod doesnt function at all in forge server, but client it works.

To Reproduce
Steps to reproduce the behavior:
1.
2.

Infos:

  • Minecraft verson: [e.g. 1.14.4] 1.16.3
  • Mod version: [e.g. 1.0.0] Latest release

If you provide a crash report please include it in a readable way (like pastebin or gist for example).
No crash occurs.

commented

Just to be sure, you installed the mod on the forge server too?

commented
commented
commented

I can't reproduce it with the latest mod version & latest forge version.
The mod is both on the Client & Server and trees are cut in one go.

Maybe you can check in your server logs if the mod is actually loaded. In my case the beginning looks something like this:

[09Oct2020 19:11:07.980] [main/INFO] [cpw.mods.modlauncher.Launcher/MODLAUNCHER]: ModLauncher running: args [--gameDir, ., --launchTarget, fmlserver, --fml.forgeVersion, 34.1.15, --fml.mcpVersion, 20200911.084530, --fml.mcVersion, 1.16.3, --fml.forgeGroup, net.minecraftforge]
[09Oct2020 19:11:07.983] [main/INFO] [cpw.mods.modlauncher.Launcher/MODLAUNCHER]: ModLauncher 7.0.1+78+master.e9771d8 starting: java version 1.8.0_261 by Oracle Corporation
[09Oct2020 19:11:08.483] [main/INFO] [net.minecraftforge.fml.loading.FixSSL/CORE]: Added Lets Encrypt root certificates as additional trust
[09Oct2020 19:11:08.509] [main/INFO] [mixin/]: SpongePowered MIXIN Subsystem Version=0.8.2 Source=file:/E:/Minecraft/modding/1.16.1/libraries/org/spongepowered/mixin/0.8.2/mixin-0.8.2.jar Service=ModLauncher Env=SERVER
[09Oct2020 19:11:09.088] [main/INFO] [cpw.mods.modlauncher.LaunchServiceHandler/MODLAUNCHER]: Launching target 'fmlserver' with arguments [--gameDir, .]
[09Oct2020 19:11:13.450] [modloading-worker-4/INFO] [net.minecraftforge.common.ForgeMod/FORGEMOD]: Forge mod loading, version 34.1.15, for MC 1.16.3 with MCP 20200911.084530
[09Oct2020 19:11:13.480] [modloading-worker-4/INFO] [net.minecraftforge.common.MinecraftForge/FORGE]: MinecraftForge v34.1.15 Initialized
[09Oct2020 19:11:13.803] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [falling_tree] Starting version check at https://raw.githubusercontent.com/RakSrinaNa/FallingTree/1.16.3-forge/update.json
[09Oct2020 19:11:14.238] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [falling_tree] Found status: UP_TO_DATE Current: 2.5.0 Target: null
[09Oct2020 19:11:14.238] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [forge] Starting version check at https://files.minecraftforge.net/maven/net/minecraftforge/forge/promotions_slim.json
[09Oct2020 19:11:14.755] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [forge] Found status: AHEAD Current: 34.1.15 Target: null
[09Oct2020 19:11:15.343] [main/INFO] [com.mojang.authlib.yggdrasil.YggdrasilAuthenticationService/]: Environment: authHost='https://authserver.mojang.com', accountsHost='https://api.mojang.com', sessionHost='https://sessionserver.mojang.com', name='PROD'
[09Oct2020 19:11:15.913] [main/WARN] [net.minecraft.command.Commands/]: Ambiguity between arguments [teleport, destination] and [teleport, targets] with inputs: [Player, 0123, @e, dd12be42-52a9-4a91-a8a1-11c01849e498]

And we can see that the mod is loaded as it tries to check its version:

[09Oct2020 19:11:13.803] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [falling_tree] Starting version check at https://raw.githubusercontent.com/RakSrinaNa/FallingTree/1.16.3-forge/update.json
[09Oct2020 19:11:14.238] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [falling_tree] Found status: UP_TO_DATE Current: 2.5.0 Target: null

Without any more information I won't really be able to help. To me it looks like the mod isn't loaded on the server.
Maybe it could be that you start a vanilla server instead of a forge server (hence the mod isn't loaded).

commented
commented

This doesn't look like a forge server.
You have to install it first (you can use forge installer, select server, and set the path as C:\Users\yoaut\Documents\Forge Server).

And then your start command should look something like java -Xmx4G -Xms4G -jar forge-1.16.3-34.1.15.jar nogui.

commented