WorldCleaner Module
The WorldCleaner module automatically removes excess items, creatures, and projectiles from your worlds. It helps reduce server lag by cleaning up unused entities and managing the abyss storage.
WorldCleaner:
enabled: true
worlds:
- world
- world_the_end
- world_nether
values:
interval: 600
alerts: true
items:
enabled: true
disable_item_despawn: false
time_lived: 10000
blacklist:
- BEACON
abyss:
enabled: false
alerts: true
permission: "lagfixer.abyss"
item_despawn: true
close: 60
blacklist:
- BEDROCK
- BEACON
creatures:
enabled: true
named: false
drop_items: false
stacked: true
levelled: true
ignore_models: true
list_mode: true
list:
- BAT
- ZOMBIE
- SKELETON
- SLIME
- CREEPER
- SPIDER
- PHANTOM
- SILVERFISH
- SQUID
- GLOW_SQUID
- COD
- SALMON
- PUFFERFISH
- TROPICAL_FISH
projectiles:
enabled: true
blacklist:
- ENDER_PEARL
- EXPERIENCE_BOTTLE
- FIREBALL
- POTION
- LINGERING_POTION
- SPLASH_POTION
- WITHER_SKULL
- TRIDENTπ§© Option Explanations
πΉ Interval (interval)
interval)Time in seconds between WorldCleaner runs.
Example:
600β cleans every 10 minutes.
πΉ Alerts (alerts)
alerts)If true, players and administrators will be notified when the module removes items or creatures.
Customizable in
lang.yml.
πΉ Items (items)
items)Controls automatic item cleanup.
enabledβ Enable or disable item removal.disable_item_despawnβ Iftrue, LagFixer handles item despawning instead of Bukkit.time_livedβ Minimum time in milliseconds an item must exist before removal. Set-1to disable.blacklistβ Items that should never be removed.Full Material list: Material API
πΉ Abyss
Optional storage for deleted items, retrievable with /abyss.
enabledβ Enable or disable abyss feature.alertsβ Notify players when items are added to abyss.permissionβ Permission required to access the abyss.item_despawnβ Iftrue, items removed by despawn are added to abyss.closeβ Time in seconds to automatically clear abyss inventory.blacklistβ Items that cannot enter the abyss.
πΉ Creatures (creatures)
creatures)Controls automatic creature removal.
enabledβ Enable or disable creature cleanup.namedβ Remove named creatures iftrue.drop_itemsβ Drop items when removing creatures.stackedβ Remove stacked entities (supports WildStacker, RoseStacker, UltimateStacker).levelledβ Remove levelled mobs (LevelledMobs support).ignore_modelsβ Exclude ModelEngine or MythicMobs entities from removal.list_modeβ Iftrue, only entities inlistare removed; otherwise, unlisted entities are removed.listβ Entity types allowed for removal.Full list: EntityType API
πΉ Projectiles (projectiles)
projectiles)Controls automatic removal of projectiles, like arrows or snowballs.
enabledβ Enable or disable projectile cleanup.blacklistβ Projectiles excluded from removal.Full list: EntityType API
Last updated