Wesley1808 / ServerCore

A mod that aims to optimize the minecraft server.
75 stars 11 forks source link

Server crashes on load #72

Closed miclol closed 1 year ago

miclol commented 1 year ago

Describe the bug Loading the server on an itzg-docker Minecraft server with several other performance-enhancing mods crashes the server on load.

Reproduce Steps to reproduce the behaviour:

  1. Create a docker Minecraft server with a docker compose of the following:
    
    version: "3.8"

services: minecraft: container_name: mc-1.20-paper-survival image: itzg/minecraft-server tty: true stdin_open: true ports:

Expected behaviour For it to not crash.

Versions ServerCore: 1.3.7 Minecraft: 1.20.1

Crash Report crash-2023-08-25_11.15.37-server.txt

Wesley1808 commented 1 year ago

By any chance, are you using exp_use_optimized_chunk_ticking_iteration in VMP's config? Its not compatible with servercore's optimizations.cache_ticking_chunks, so you would need to disable one of them if you currently have both set to true.

miclol commented 1 year ago

Yes, this solves the problem. Thank you!