WorldResetter
๐ก Updated this yearPreview

๐ Analysis
- ๐ #234 of 331 adventure mods in this game by downloads
๐ About This Mod
# ๐ WorldResetter A minimal **Paper** plugin that deletes the overworld folder on every server startup and creates a fresh world with configurable seed, type, gamerules, time, weather, and Paper-specific performance tuning. --- ## โ๏ธ How It Works On every startup (before worlds load), WorldResetter deletes the `world` folder, then programmatically creates a new overworld using `Bukkit.createWorld()` with your configured seed and world type. It also applies your gamerules, time, weather, and per-world performance settings, and writes the seed and spawn protection radius into `server.properties`. > โน๏ธ `world_nether` and `world_the_end` are **not** touched. --- ## ๐ก Why It Exists Built for lava rising minigame servers where every match should feel different. Instead of playing the same map over and over, the world resets on every server restart โ giving players a brand new terrain each time. --- ## ๐ Commands | Command | Description | |---|---| | ๐ `/wr toggle` | Toggles world reset on/off | | โ `/wr toggle on` | Enables world reset on next startup | | โ `/wr toggle off` | Disables world reset on next startup | | โน๏ธ `/wr settings info` | Shows current settings | | ๐ฑ `/wr settings seed <seed\|random>` | Sets the world seed (or random) | | ๐บ๏ธ `/wr settings worldtype <type>` | โ ๏ธ Currently under maintenance โ disabled | | ๐ฒ `/wr settings gamerule <rule> <value>` | Sets a gamerule | | ๐ฒ `/wr settings gamerule list` | Lists configured gamerules | | ๐ฒ `/wr settings gamerule reset` | Clears all gamerules | | โ๏ธ `/wr settings time <day\|night\|0-24000>` | Sets world time | | โ๏ธ `/wr settings weather <clear\|rain\|thunder>` | Sets weather | | ๐ก๏ธ `/wr settings spawnprotection <radius>` | Sets spawn protection radius | | ๐ฅ๏ธ `/wr settings viewdistance <2-32\|default>` | Sets this world's view distance (Paper-only) | | ๐ `/wr settings simulationdistance <2-32\|default>` | Sets this world's simulation distance (Paper-only) | | ๐๏ธ `/wr settings structures <true\|false>` | Toggles structure generation (villages, strongholds, etc.) | | โป๏ธ `/wr settings reset` | Resets all settings to defaults | | ๐ฆ `/wr version` | Shows current version vs latest available | | ๐ฅ `/wr version update` | Downloads and applies the latest version from Modrinth | **Alias:** `/worldresetter` can be used in place of `/wr` **Permission:** `worldresetter.admin` (default: op) --- ## ๐ ๏ธ Configuration (`config.yml`) ```yaml enabled: false settings: seed: '' world-type: 'normal' time: -1 weather: '' spawn-protection: -1 view-distance: -1 simulation-distance: -1 generate-structures: true gamerules: {} ``` --- ## ๐ Requirements - โ Java 21+ - ๐ฆ Paper or a Paper-based fork (e.g. Purpur) โ **1.21.11+ recommended** > โ ๏ธ Not compatible with vanilla Spigot or CraftBukkit โ see (#-platform-support) below. --- ## ๐งฉ Platform Support WorldResetter uses the **Paper Plugin** system (not Bukkit's `plugin.yml`) and only works on **Paper** and Paper-based servers like **Purpur** โ it does not work on plain Spigot or CraftBukkit. This isn't a bug, it's intentional: some of the plugin's features (like per-world view distance and the modern command API) simply don't exist outside of Paper. If your server runs on Purpur, you're fine โ Purpur is built on top of Paper, so everything works the same. --- ## ๐ Performance Optimizations A few things this plugin does to keep your server running smoothly: - **โก Faster restarts** โ Deleting the old world used to happen one file at a time, which could take a while on large maps. Now it deletes everything at once using multiple CPU cores, so your server starts back up much faster โ especially noticeable on SSD/NVMe drives. - **๐ชถ Lighter load per world** โ You can lower the view distance and simulation distance just for this world, without affecting your other worlds. Small minigame maps don't need long render distances, so turning this down reduces lag with no downside. - **โญ๏ธ Skip unnecessary generation** โ If players never explore for loot, you can turn off village/stronghold generation entirely โ this makes new worlds generate faster. --- ## ๐ Auto-Update WorldResetter checks the Modrinth API every 6 hours for new releases. OPs are notified on join when an update is available. Use `/wr version` to check manually and `/wr version update` to download and apply the update automatically. --- ## ๐ License MIT --- ## โ๏ธ Source Code (https://github.com/MrGodzilla38/WorldResetter)
# ๐ WorldResetter
A minimal Paper plugin that deletes the overworld folder on every server startup and creates a fresh world with configurable seed, type, gamerules, time, weather, and Paper-specific performance tuning.
## โ๏ธ How It Works
On every startup (before worlds load), WorldResetter deletes the `world` folder, then programmatically creates a new overworld using `Bukkit.createWorld()` with your configured seed and world type.
It also applies your gamerules, time, weather, and per-world performance settings, and writes the seed and spawn protection radius into `server.properties`.
> โน๏ธ `world_nether` and `world_the_end` are not touched.
## ๐ก Why It Exists
Built for lava rising minigame servers where every match should feel different. Instead of playing the same map over and over, the world resets on every server restart โ giving players a brand new terrain each time.
## ๐ Commands
| Command | Description |
|---|---|
| ๐ `/wr toggle` | Toggles world reset on/off |
| โ
`/wr toggle on` | Enables world reset on next startup |
| โ `/wr toggle off` | Disables world reset on next startup |
| โน๏ธ `/wr settings info` | Shows current settings |
| ๐ฑ `/wr settings seed
Alias: `/worldresetter` can be used in place of `/wr`
Permission: `worldresetter.admin` (default: op)
## ๐ ๏ธ Configuration (`config.yml`)
```yaml enabled: false settings: seed: '' world-type: 'normal' time: -1 weather: '' spawn-protection: -1 view-distance: -1 simulation-distance: -1 generate-structures: true gamerules: {} ```
## ๐ Requirements
- โ Java 21+
- ๐ฆ Paper or a Paper-based fork (e.g. Purpur) โ 1. 21. 11+ recommended
> โ ๏ธ Not compatible with vanilla Spigot or CraftBukkit โ see (#-platform-support) below.
## ๐งฉ Platform Support
WorldResetter uses the Paper Plugin system (not Bukkit's `plugin.yml`) and only works on Paper and Paper-based servers like Purpur โ it does not work on plain Spigot or CraftBukkit.
This isn't a bug, it's intentional: some of the plugin's features (like per-world view distance and the modern command API) simply don't exist outside of Paper. If your server runs on Purpur, you're fine โ Purpur is built on top of Paper, so everything works the same.
## ๐ Performance Optimizations
A few things this plugin does to keep your server running smoothly:
- โก Faster restarts โ Deleting the old world used to happen one file at a time, which could take a while on large maps. Now it deletes everything at once using multiple CPU cores, so your server starts back up much faster โ especially noticeable on SSD/NVMe drives.
- ๐ชถ Lighter load per world โ You can lower the view distance and simulation distance just for this world, without affecting your other worlds. Small minigame maps don't need long render distances, so turning this down reduces lag with no downside.
- โญ๏ธ Skip unnecessary generation โ If players never explore for loot, you can turn off village/stronghold generation entirely โ this makes new worlds generate faster.
## ๐ Auto-Update
WorldResetter checks the Modrinth API every 6 hours for new releases. OPs are notified on join when an update is available. Use `/wr version` to check manually and `/wr version update` to download and apply the update automatically.
## ๐ License
## โ๏ธ Source Code
(https://github.com/MrGodzilla38/WorldResetter)
๐ Mod Details
- Game
- Minecraft Plugins
- Author
- MrGodzilla
- Version
- Kch1DDNf
- Downloads
- 45
- Endorsements
- 2
- Category
- adventure
- Created
- 7/6/2026
- Updated
- 7/9/2026
- Game Versions
- aiglndEu, oMaFdkJ6, uZ3AUIPN, Qc4aJRot, 3x4UVJaY
- Tags
- adventure, utility, worldgen
๐ง How to Install Minecraft Plugins Mods
Download from Modrinth. Use Prism Launcher or drop into your mods folder.
๐ Full step-by-step install guide for Minecraft Plugins โ
Visit the official mod page for specific installation instructions for this mod.
๐ฎ Need cheat codes or console commands? Check ur gaming wiki for Minecraft Plugins commands, item IDs, and more.
โ Frequently Asked Questions
Which Minecraft Plugins versions does WorldResetter support?
The author lists aiglndEu, oMaFdkJ6, uZ3AUIPN, Qc4aJRot, 3x4UVJaY, Kch1DDNf. Other versions may work but are untested by the author.
What is the latest version of WorldResetter?
Version Kch1DDNf, published 2026-07-09 with 45 downloads recorded at the source.
Keep browsing โ more Minecraft Plugins mods await