The following optimizations can be made in game using the Minecraft command line. This is accessed by the /
key.
Modifying Gamerules
You can read more about gamerules on the Offical Minecraft Wiki
Next we want to disable fireTick, this prevents fire from spreading. This reduces lag from accidental fires, and lava lakes burning down an entire forrest. We change the gamerule by typing:
/gamerule doFireTick false
The gamerules that I change are:
- doFireTick=false: to prevent lag and destructive accidents
- doPatrolSpawning=false: prevent patrols from spawning and thus triggering raids in villages. This may be contriversial, but I have a limited amount of time in a day to play, and I do not want to spend it all dealing with raids. If I ever want a raid, I can turn it back on
Pre-generating terrain
Minecraft can read the level.dat
file much faster than it can generate terrain. The level.dat
file contains all information about the entities and blocks in a Minecraft world, Only the information about the areas that have been visited by the user. So before you have a bunch of players join and run arround each of them forcing the server to generate the areas they are exploring you will experience lots of lag. To avoid this I recommend flying around in spectator mode to load in the main area. I typically try and generate all the area within 1 2000-4000 block radius. (*Note that this will make your world file size reach into the GB).
You can enter spectator mode using the following command:
/gamemode spectator
You can then get back to survival mode by:
/gamemode survival
The reason you want to use spectator mode over creative mode is that you can use the scroll wheel to change the speed that you are able to fly around.
For more information on this watch Xisumavoid's video on Pre-Generating minecraft worlds. Note that his version of pre-generating is far more complicated than mine.
Top comments (0)