PollinatorPlus
๐ก Updated this year๐ Analysis
- ๐ #988 of 1080 bukkit mods in this game by downloads
๐ About This Mod
# ๐ PollinatorPlus **PollinatorPlus** is a lightweight Spigot/Paper plugin that fixes natural mob behaviors being blocked by other plugins โ most notably **PlotSquared**. Developed by **Baumkrieger69**. --- ## โ Why does this plugin exist? **PlotSquared** cancels many entity events inside and around plots to protect builds and prevent griefing. Unfortunately this also blocks completely natural and harmless mob behaviors: | Mob | Blocked Behavior | Event | |---------|----------------------------------|--------------------------| | ๐ Bee | Entering beehive / nest | `EntityEnterBlockEvent` | | ๐ Bee | Spawning from beehive | `CreatureSpawnEvent` | | ๐ธ Frog | Laying frogspawn eggs | `EntityChangeBlockEvent` | | ๐ธ Frog | Hatching from eggs | `CreatureSpawnEvent` | | ๐ข Turtle | Laying turtle eggs | `EntityChangeBlockEvent` | | ๐ข Turtle | Hatching from eggs | `CreatureSpawnEvent` | PollinatorPlus listens at `HIGHEST` priority **after** PlotSquared has cancelled these events and simply un-cancels them โ so the mobs behave naturally again without compromising plot protection. --- ## โจ Features - โ Fixes cancelled **Bee** hive entering (`EntityEnterBlockEvent`) - โ Fixes cancelled **Bee** spawning from beehives (`CreatureSpawnEvent`) - โ Fixes cancelled **Frog** & **Turtle** egg laying (`EntityChangeBlockEvent`) - โ Fixes cancelled **Frog** & **Turtle** spawning (`CreatureSpawnEvent`) - โ In-game config reload command - โ Per-event toggle in config - โ Debug logging mode --- ## ๐ Requirements - Spigot / Paper **1.21+** - Java **17+** - PlotSquared *(or any other plugin that cancels these events)* entity-enter-block: true | Option | Default | Description | |------------------------------|---------|------------------------------------------------| | `debug` | `false` | Enables detailed debug logging in console | | `handle-entity-change-block` | `true` | Fixes Frog/Turtle egg laying & Bee hive events | | `handle-creature-spawn` | `true` | Fixes Frog/Turtle hatching & Bee hive spawning | | `handle-entity-enter-block` | `true` | Fixes Bee entering beehive/nest | --- ## ๐ฌ Commands | Command | Description | Permission | |---------------------|---------------------|-------------------------| | `/pollinatorplus` | Reloads the config | `pollinatorplus.reload` | --- ## ๐ Permissions | Permission | Default | Description | |--------------------------|---------|------------------------------| | `pollinatorplus.reload` | OP | Allows reloading the config | --- ## ๐ง How it works PollinatorPlus registers all its events at `HIGHEST` priority with `ignoreCancelled = false`. This means it runs **after** PlotSquared (which uses `NORMAL` or `HIGH` priority) and can selectively un-cancel only the specific harmless natural behaviors listed above. Plot protection for players remains completely intact. โ --- ## ๐งช Tested Configuration This plugin was developed and tested under the following specific server setup. **Other configurations may or may not work as expected.** | Setting | Value | Where | |---|---|---| | `doMobSpawning` gamerule | `true` | Minecraft Gamerule | | Mob Spawning | `deny` | WorldGuard Region Flag | > โ ๏ธ **Important:** The plugin was tested with **mob spawning enabled via gamerule** > but **blocked by WorldGuard** on a per-region basis, combined with PlotSquared. > This is the exact setup it was built to fix. > Behavior under other configurations (e.g. `doMobSpawning false`, no WorldGuard, > different protection plugins) has **not been tested** and may differ. --- ## ๐ง Compatibility | Plugin / Setting | Status | |---|---| | PlotSquared | โ Fully compatible & designed for it | | WorldGuard (`mob-spawning deny`) | โ Tested & working | | WorldGuard (`mob-spawning allow`) | โ ๏ธ Not tested | | GriefPrevention | โ ๏ธ Not tested | | `doMobSpawning true` | โ Tested | | `doMobSpawning false` | โ ๏ธ Not tested โ likely breaks behavior | | Any other protection plugin | โ ๏ธ Untested, may work |
# ๐ PollinatorPlus
PollinatorPlus is a lightweight Spigot/Paper plugin that fixes natural mob behaviors being blocked by other plugins โ most notably PlotSquared.
Developed by Baumkrieger69.
## โ Why does this plugin exist?
PlotSquared cancels many entity events inside and around plots to protect builds and prevent griefing. Unfortunately this also blocks completely natural and harmless mob behaviors:
| Mob | Blocked Behavior | Event | |---------|----------------------------------|--------------------------| | ๐ Bee | Entering beehive / nest | `EntityEnterBlockEvent` | | ๐ Bee | Spawning from beehive | `CreatureSpawnEvent` | | ๐ธ Frog | Laying frogspawn eggs | `EntityChangeBlockEvent` | | ๐ธ Frog | Hatching from eggs | `CreatureSpawnEvent` | | ๐ข Turtle | Laying turtle eggs | `EntityChangeBlockEvent` | | ๐ข Turtle | Hatching from eggs | `CreatureSpawnEvent` |
PollinatorPlus listens at `HIGHEST` priority after PlotSquared has cancelled these events and simply un-cancels them โ so the mobs behave naturally again without compromising plot protection.
## โจ Features
- โ Fixes cancelled Bee hive entering (`EntityEnterBlockEvent`)
- โ Fixes cancelled Bee spawning from beehives (`CreatureSpawnEvent`)
- โ Fixes cancelled Frog & Turtle egg laying (`EntityChangeBlockEvent`)
- โ Fixes cancelled Frog & Turtle spawning (`CreatureSpawnEvent`)
- โ In-game config reload command
- โ Per-event toggle in config
- โ Debug logging mode
## ๐ Requirements
- Spigot / Paper 1. 21+
- Java 17+
- PlotSquared (or any other plugin that cancels these events)
- entity-enter-block: true
| Option | Default | Description | |------------------------------|---------|------------------------------------------------| | `debug` | `false` | Enables detailed debug logging in console | | `handle-entity-change-block` | `true` | Fixes Frog/Turtle egg laying & Bee hive events | | `handle-creature-spawn` | `true` | Fixes Frog/Turtle hatching & Bee hive spawning | | `handle-entity-enter-block` | `true` | Fixes Bee entering beehive/nest |
## ๐ฌ Commands
| Command | Description | Permission | |---------------------|---------------------|-------------------------| | `/pollinatorplus` | Reloads the config | `pollinatorplus.reload` |
## ๐ Permissions
| Permission | Default | Description | |--------------------------|---------|------------------------------| | `pollinatorplus.reload` | OP | Allows reloading the config |
## ๐ง How it works
PollinatorPlus registers all its events at `HIGHEST` priority with `ignoreCancelled = false`. This means it runs after PlotSquared (which uses `NORMAL` or `HIGH` priority) and can selectively un-cancel only the specific harmless natural behaviors listed above. Plot protection for players remains completely intact. โ
## ๐งช Tested Configuration
This plugin was developed and tested under the following specific server setup. Other configurations may or may not work as expected.
| Setting | Value | Where | |---|---|---| | `doMobSpawning` gamerule | `true` | Minecraft Gamerule | | Mob Spawning | `deny` | WorldGuard Region Flag |
> โ ๏ธ Important: The plugin was tested with mob spawning enabled via gamerule > but blocked by WorldGuard on a per-region basis, combined with PlotSquared. > This is the exact setup it was built to fix. > Behavior under other configurations (e.g. `doMobSpawning false`, no WorldGuard, > different protection plugins) has not been tested and may differ.
## ๐ง Compatibility
| Plugin / Setting | Status | |---|---| | PlotSquared | โ Fully compatible & designed for it | | WorldGuard (`mob-spawning deny`) | โ Tested & working | | WorldGuard (`mob-spawning allow`) | โ ๏ธ Not tested | | GriefPrevention | โ ๏ธ Not tested | | `doMobSpawning true` | โ Tested | | `doMobSpawning false` | โ ๏ธ Not tested โ likely breaks behavior | | Any other protection plugin | โ ๏ธ Untested, may work |
๐ Mod Details
- Game
- Minecraft Plugins
- Author
- Baumkrieger69
- Version
- 1.0.0
- Downloads
- 35
- Endorsements
- 0
- Category
- bukkit
- Created
- 5/23/2026
- Updated
- 5/19/2026
- Game Versions
- 1.21, 1.21.1, 1.21.2, 1.21.3, 1.21.4
- Tags
- game-mechanics, mobs, utility
๐ง 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 PollinatorPlus support?
The author lists 1.21, 1.21.1, 1.21.2, 1.21.3, 1.21.4, 1.21.5. Other versions may work but are untested by the author.
What is the latest version of PollinatorPlus?
Version 1.0.0, published 2026-05-19 with 35 downloads recorded at the source.
Keep browsing โ more Minecraft Plugins mods await