How To Fix Corrupt Worlds in Minecraft

Sometimes, worlds in Minecraft can become corrupted. This article explains how to fix broken worlds. Unfortunately though, corrupt worlds cannot be repaired on all maps.

This article assumes that you are running a Linux Minecraft server.

Step 1: Install Python

We are going to use a tool that's programmed in Python. Therefore, we need Python installed on our server. If the following command returns a version:

python -V

Then Python is already installed. If not, install it with the following commands:

wget http://python.org/ftp/python/2.7.6/Python-2.7.6.tar.xz
tar xf Python-2.7.6.tar.xz
cd Python-2.7.6
./configure --prefix=/usr/local --enable-unicode=ucs4 --enable-shared LDFLAGS="-Wl,-rpath /usr/local/lib"
make && make altinstall

Step 2: Download Minecraft-Region-Fixer

Minecraft-Region-Fixer is the tool we'll be using. Download it by visiting its GitHub page and download the .zip file of the latest version. Then upload it to your server. For example:

cd ~
wget https://github.com/Fenixin/Minecraft-Region-Fixer/archive/v0.2.1.zip
unzip Minecraft-Region-Fixer/archive/v0.2.1.zip
cd v0.2.1

Step 3: Fixing the corrupt world

Find the path of the corrupted world, and execute:

python regionfixer.py PATH

Replace PATH with the path of the corrupted world. An example world file would be /home/minecraft/maps/corrupt. The output from regionfixer.py will tell you whether or not the world was recovered.

  • Minecraft, Linux Guides, Game Servers
  • 0 Users Found This Useful
Was this answer helpful?

Related Articles

Setup Ragnarok Online Server on Ubuntu 14.04 x64

In this article, we are going to setup a Ragnarok Online Server on Ubuntu 14.04 x64. You can be...

Setup Percona on Debian 7

MySQL multi-master replication is an excellent feature within MySQL. However, there is only one...

Installing Golang on Ubuntu 14.04

Golang is a programming language developed by Google that would keep the traditions of C, but...

Starting a Teamspeak 3 Server on CentOS 6.4

Run the following commands to install a Teamspeak 3 server. # Secure Iptables iptables -F...

Multicraft (Minecraft Panel) on CentOS 6

Multicraft Panel Multicraft is a simple, easy to use web-based control panel for Minecraft...