Losing your Minecraft worlds is incredibly frustrating, especially when you have plans to use one for a server! Because of how TLauncher handles different versions and modpacks, your worlds likely aren’t permanently goneโthey are probably just hiding in a different directory.
Here are the most common reasons this happens and how you can track down your missing worlds.
1. Check Version-Specific and Modpack Folders
If you used TLauncher’s built-in mod system (TLMods) or launched a specific Forge/Fabric version, TLauncher often creates an isolated environment for it to prevent mod conflicts. This means your modded world won’t save in the main .minecraft/saves folder.
- Press
Win + R, type%appdata%\.minecraft\versions, and press Enter. - Look for a folder named after your specific modpack or the exact game version you were playing.
- Open that folder and look for a
savesfolder inside. Your missing modded world is likely sitting in there!
2. Search Your Entire Minecraft Directory
If checking the versions folder doesn’t work, the fastest way to find a misplaced world is to let Windows search for its core data file.
- Press
Win + R, type%appdata%\.minecraft, and press Enter. - In the search bar at the top right of the File Explorer window, type
level.dat. - Windows will scan the entire directory. When the search finishes, look at the folder paths of the results.
- Right-click the
level.datfile that matches the date you last played and select Open file location. You can then copy that entire world folder back into your mainsavesfolder if you need it there.
3. Check for File Corruption
Sometimes, a world folder is exactly where it belongs, but it disappears from the single-player menu because the game can’t read it. This usually happens if the game or your PC crashed while playing.
- Open the folder of the missing world.
- Look for a file named
level.dat. If it is missing or 0 KB, the game cannot read the world. - Look for a backup file named
level.dat_oldin the same folder. - Delete the broken
level.datfile (or move it somewhere else to be safe). - Rename
level.dat_oldto exactlylevel.dat. - Relaunch the game and check if the world reappears in your menu.
4. Verify TLauncher Settings
It is possible that TLauncher was accidentally pointed to a completely different directory, which causes it to load a fresh, empty saves folder.
- Open TLauncher.
- Click the gear icon (Settings) in the bottom right corner.
- Check the Directory path. Ensure it is pointing to your standard
C:\Users\[YourName]\AppData\Roaming\.minecraftpath. If it got changed, your launcher is looking in the wrong place.
Set up Backup to ensure you don’t lose out again
Setting up an automated backup system is the best way to ensure you never lose your hard work again, especially when managing a server. Since you are playing a modded version, you have a couple of excellent options.
Here are the two best ways to automate your Minecraft backups:
Option 1: Use a Backup Mod (Highly Recommended for Modded Worlds)
Because you are already running a modded setup, the easiest and most reliable method is simply dropping a backup mod into your mods folder. These mods automatically create zipped backups of your world at regular intervals while you play.
How to set it up:
- Download a backup mod compatible with your game version and modloader (Forge or Fabric).
- Simple Backups and FTB Backups are two of the most popular and reliable options.
- Place the downloaded
.jarfile into your.minecraft\modsfolder (or the specific version’smodsfolder, if TLauncher isolated it). - Launch your game. The mod will automatically create a
backupsfolder in your Minecraft directory. - By default, most of these mods will back up your world every couple of hours. You can adjust this interval in the mod’s configuration file (usually found in the
configfolder).
Option 2: Use Windows Task Scheduler (No Mods Required)
If you want to back up your entire Minecraft folder (including screenshots, resource packs, and all versions) without adding more mods, you can tell Windows to automatically copy your files to a safe location, like a separate hard drive or a cloud storage folder (like Google Drive or OneDrive).
Step 1: Create a simple copy script
- Right-click on your desktop, select New, and click Text Document.
- Open the document and paste the following code. (Note: Replace
C:\Your\Backup\Locationwith the actual path to your backup folder, like an external drive or OneDrive folder).
xcopy"%appdata%\.minecraft\saves" "C:\Your\Backup\Location\Minecraft_Backups" /E /I /H /Y - Click File > Save As.
- Name the file
MCBackup.bat(make sure the “Save as type” is set to All Files so it doesn’t save as a.txt).
Step 2: Tell Windows to run it automatically
- Press
Win + S, type Task Scheduler, and open the app. - In the right-hand panel, click Create Basic Task…
- Name it “Minecraft Backup” and click Next.
- Choose how often you want it to run (e.g., Daily or Weekly) and set the time.
- For the Action, select Start a program.
- Click Browse, find the
MCBackup.batfile you created on your desktop, and select it. - Click Finish. Now, Windows will automatically copy your saves to your safe folder on the schedule you set.
