Logo
MINECRAFTBIBLE
Items
Items

All game items

Blocks
Blocks

Building blocks

Mobs
Mobs

Creatures & monsters

Biomes
Biomes

World biomes

Structures
Structures

Generated structures

Recipes
Recipes

Crafting guides

Advancements
Advancements

Achievements

Loot Tables
Loot Tables

Drop rates

Tags
Tags

Item groupings

All Versions
View all data →
Capes
Cape ArchiveNEW

Browse rare Minecon capes, OptiFine capes, and custom capes from players worldwide

Browse

Player Database
Player DatabasePopular

Search any player

Skin Browser
Skin Browser

Browse & download skins

Cape Gallery
Cape GalleryNEW

Minecon & OptiFine capes

Seed Vault
Seed Vault

Curated seeds

Learn

Guides
GuidesNew

Tutorials & tips

Blog
Blog

News & updates

Community

Community Hub
Community HubHub

Posts, discussions & more

All Versions
View community →
Seed Analyzer
Seed Analyzer

World seed analysis

Loot Explorer
Loot Explorer

Drop rates

Crafting Calculator
Crafting Calculator

Material planning

Enchant Calculator
Enchant Calculator

Probability math

Redstone Lab
Redstone Lab

Signal timing

Trading Profit
Trading Profit

Villager ROI

All Versions
View all tools →
Mods
Mods

Browse all mods

Plugins
Plugins

Server plugins

Resource Packs
Resource Packs

Textures & sounds

Shaders
Shaders

Visual enhancements

Datapacks
Datapacks

World logic

Scanner
Mod Intelligence

Scan & analyze any mod

All Versions
View all mods →
Loading...
IntroductionIntroductionVersion HistoryVersion HistoryGuidesGuidesBlog & NewsBlog & News
ItemsItemsBlocksBlocksMobsMobsRecipesRecipesBiomesBiomesStructuresStructuresAdvancementsAdvancementsLoot TablesLoot TablesTagsTags
ModsModsPluginsPluginsResource PacksResource PacksShadersShadersDatapacksDatapacks

MinecraftBible

The Ultimate Wiki

Logo
MINECRAFTBIBLE

The ultimate Minecraft reference. Every item, block, mob, and recipe documented with precision.

Community

  • Skin Browser
  • Cape Gallery
  • Seed Vault
  • Blog
  • Guides

Database

  • Items
  • Blocks
  • Mobs
  • Recipes
  • Biomes
  • Structures

Tools

  • Seed Analyzer
  • Mod Intelligence
  • Crafting Calculator
  • Enchant Calculator

Mods & Packs

  • Mods
  • Plugins
  • Resource Packs
  • Shaders
  • Datapacks

Site & Legal

  • About
  • Authors
  • Editorial Policy
  • Corrections
  • Contact
  • Privacy Policy
  • Terms of Service
  • DMCA
  • Sitemap

© 2026 MinecraftBible. Not affiliated with Mojang or Microsoft.

PrivacyTermsContact
ClearDrops+
PluginLicenseRef-All-Rights-Reserved

ClearDrops+

Lightweight automatic item clearer with TPS protection, warnings, blacklist support and per-world control.

220
Downloads
0
Followers
4 months ago
Updated
📦
3
Versions
optimizationutilitypaperspigot
Download Latestv1.1.1View on Modrinth

📖About ClearDrops+

ClearDrops+

ClearDrops+ is a Minecraft plugin that keeps worlds clean by removing dropped items in a controlled and predictable way.

Instead of blindly clearing everything on a timer, ClearDrops+ reacts to server TPS and only removes items when it actually makes sense. It uses safe cleanup logic, avoids NMS completely, and stays simple by design. Built for modern Paper and Spigot servers.

Perfect for survival servers that want cleaner worlds, smooth gameplay, and full control over how item cleanup works.


⚡Core Features

  • Automatic clearing of dropped items at configurable intervals
  • Warning messages before items are removed
  • TPS protection (skip or stop cleanup on low TPS)
  • Batch-based removal (items per tick) to prevent lag spikes
  • Item age filter to protect freshly dropped items
  • Material blacklist via blacklist.yml
  • Per-world control using ALL or WHITELIST mode

🗺️Advanced Chunk Cleanup (NEW)

ClearDrops+ includes an optional smart chunk-load cleanup system:

  • Cleans dropped items when chunks load (no force-loading)
  • Queue-based processing with per-tick limits
  • Chunk cooldowns to avoid repeated cleanups
  • Dynamic TPS-based scaling of cleanup limits
  • Optional admin notifications
  • Per-world chunk cleanup overrides

Designed to be safe, predictable and performance-friendly, even on large servers.


📊 Performance & Safety

  • Fully TPS-aware logic for global and chunk cleanup
  • Cleanup automatically pauses when TPS drops
  • No async entity access, no unsafe chunk loading
  • Designed to avoid lag spikes and server freezes

Debug & Statistics (NEW)

  • Optional debug logging (console and file)
  • Runtime debug toggle via command
  • Detailed cleanup statistics
  • Track removed items, cleanup runs and skipped actions

📜 Commands

Command Description Permission
/cd clear Manually start global item clearing cleardrops.admin
/cd next Show time until the next clear Everyone
/cd status Show plugin status cleardrops.admin
/cd stats Show cleanup statistics cleardrops.admin
/cd cleanhere Clean the current chunk cleardrops.admin
/cd debug start|stop Toggle debug logging cleardrops.admin
/cd reload Reload configuration files cleardrops.admin

🔐 Permissions

  • cleardrops.admin
    Grants access to all administrative commands.

⚙️ Configuration

ClearDrops+ provides a clean and flexible configuration system:

  • Clear intervals and warning times
  • Minimum TPS requirements
  • Minimum item age and item count
  • Items removed per tick
  • World whitelist support
  • Material blacklist support
  • Chunk cleanup & dynamic TPS scaling options

All configuration files are generated automatically on first startup.


🧩 Compatibility

  • Minecraft: 1.21.x
  • Java: 21 or newer
  • Platforms: Paper, Spigot and Paper-based forks (e.g. Purpur)

# ClearDropsPlus Configuration
# Controls automatic item cleanup and performance limits.
#
# Notes:
# - All time values are in seconds
# - Chunks are never force-loaded
# - Chunk cleanup only runs on natural chunk load

clear:
  interval-seconds: 3600

warnings:
  times-seconds:
    - 300
    - 60
    - 10
    - 5
    - 4
    - 3
    - 2
    - 1

worlds:
  mode: ALL
  list:
    - world
    - world_nether
    - world_the_end

safety:
  min-tps: 14.0
  min-items-to-clear: 10

filters:
  minAgeSeconds: 60

performance:
  items-per-tick: 200

chunk-cleanup:
  enabled: true
  min-items: 20
  max-chunks-per-tick: 1
  max-remove-per-chunk: 800
  chunk-cooldown-seconds: 60
  only-existing-chunks: true
  notify-admins: true

world-settings:
  world:
    chunk-cleanup:
      min-items: 120

  world_nether:
    chunk-cleanup:
      enabled: false

  world_the_end:
    chunk-cleanup:
      min-items: 60
      max-remove-per-chunk: 400
      notify-admins: false

debug:
  enabled: false
  to-console: true
  to-file: true
  file-prefix: "debug"

dynamic-limits:
  enabled: true
  full-tps: 20.0
  min-tps: 14.0
  min-scale: 0.25

ClearDrops+ — Clean smarter, not harder.

👥 Team & Contributors

Fedex1991
Fedex1991Owner

⚙️ Compatibility

Environment
🖥️ Server-side
Loaders
paperspigot
Minecraft Versions
1.21.61.21.71.21.81.21.91.21.101.21.11

🔗 Links

Modrinth Page