20% OFF Your first order with SAVE20
Background image of the page

Help Article

How To Debug and Fix Ticking Entity Errors

Learn how to find and remove the ticking entity crashing your Minecraft server using console commands, MCASelector, or Forge config settings.

Last updated on  Feb 28, 2026

A ticking entity error occurs when a corrupted or broken mob or block entity in your world causes the server to crash on startup. Each time the server tries to update (or "tick") that entity, it crashes. This is most common on modded servers where a mod alters how an entity behaves in a way that conflicts with the game's update loop.

This guide walks you through how to locate the broken entity using your crash report and remove it using several methods.

⚠️
IMPORTANT: Back up your world before attempting any of the steps below. Editing world files incorrectly can cause data loss that cannot be undone. You can create a manual backup from Files → Backups in the Game Panel.

Step 1: Read the Crash Report

  1. Head over to the Game Panel and stop your server.
  2. Navigate to Files and open the crash-reports folder.
  3. Open the most recent crash report file (named by date and time), which is usually at the bottom of the folder.
  4. Search for the section labelled -- Entity being ticked --.
  1. Note down the entity type, its exact coordinates (X, Y, Z), and the dimension it is in - you will need these for the methods below.
👉
NOTE: The crash report header will usually confirm this is a "Ticking Entity" crash. If the section label reads -- Block entity being ticked -- instead, the culprit is a block entity (such as a chest or furnace) rather than a mob.

Method 1: Kill the Entity via Console

Use this method if your server can start and run without immediately crashing.

  1. Head over to the Game Panel and start your server.
  2. Navigate to Console.
  3. Enter the following command, replacing the values with the entity type and coordinates from the crash report:
/kill @e[type=<entity_type>,x=<X>,y=<Y>,z=<Z>]
💡
TIP: If the server crashes too quickly for you to run the command, try changing the world spawn point by opening the level.dat file from your world folder and changing the SpawnX, SpawnY, and SpawnZ coordinates far away from the broken entity. This buys you time to enter the kill command before the server ticks the entity.

Method 2: Reset the Chunk with MCASelector

Use this method if the server crashes on startup before you can run any commands. This only resets the specific chunk containing the broken entity, so the rest of your world stays intact.

⚠️
WARNING: Deleting a chunk permanently erases all blocks, items, and data within it. Any builds in that area will be lost.
  1. Head over to the Game Panel and stop your server.
  2. Navigate to Files and download your world folder to your computer.
  3. Open MCASelector on your computer and load the downloaded world folder.
  4. Use the coordinates from the crash report to locate the chunk on the map.
  5. Right-click the chunk and select Delete selected chunks.
  6. Save and re-upload the edited world folder to Files, overwriting the existing files.
  7. Start your server and check the console to confirm it loads without crashing.

Method 3: Forge Config Removal (Last Resort)

Use this method on Forge servers only if the methods above have not worked. This tells Forge to automatically delete any entity that causes a crash on the next startup. It is effective, but it may also remove other entities nearby - always revert the settings once your server recovers.

⚠️
WARNING: Leaving removeErroringEntities set to true permanently will cause Forge to silently delete any entity that errors in the future, including ones you may want to keep. Revert the setting as soon as the server is stable again.

Forge 1.13 and Newer

  1. Head over to the Game Panel and stop your server.
  2. Navigate to Files, open your world folder, then open serverconfig/forge-server.toml.
  3. Set removeErroringEntities to true.
  4. Set removeErroringBlockEntities to true.
  1. Save the file and start your server.
  2. Once the server has loaded successfully, stop it and set both values back to false.
  3. Save and restart the server to confirm it runs correctly.

Forge 1.12.2 and Older

  1. Head over to the Game Panel and stop your server.
  2. Navigate to Files and open the config/forge.cfg file.
  3. Set removeErroringEntities to true.
  4. Set removeErroringTileEntities to true.
  5. Save the file and start your server.
  6. Once the server has loaded successfully, stop it and set both values back to false.
  7. Save and restart the server to confirm it runs correctly.

Method 4: Restore a Backup

If none of the above methods resolve the crash, restoring a backup from before the error started is the safest option.

  1. Head over to the Game Panel and stop your server.
  2. Navigate to Files → Backups.
  3. Find a backup created before the ticking entity error began occurring.
  4. Click Restore and confirm the action.
  5. Start your server and confirm it loads without crashing.
👉
NOTE: Any progress made after the backup was created will be lost when you restore. If you haven't taken a backup yourself, get in touch with our support team to see if we can restore a backup from an earlier date.

🧑‍💻
If you still require assistance, please get in touch with our support team by opening a ticket or by joining our community Discord server.