PollinatorPlus

โญ โ€” (0 endorsements) ๐Ÿ“ฅ 35 downloads ๐Ÿ“Œ v1.0.0 ๐Ÿ“… 5/23/2026
๐ŸŸก Updated this year

By Baumkrieger69 ยท bukkit

โฌ‡ Download Mod Source: Modrinth โ†— ๐Ÿ“… Updated: 5/19/2026 ๐Ÿ“… Created: 5/23/2026

๐Ÿ” Analysis

  • ๐Ÿ† #988 of 1080 bukkit mods in this game by downloads

๐Ÿ“‹ About This Mod

โœ… โœ… In-game config reload command
โœ… โœ… Per-event toggle in config
โœ… โœ… Debug logging mode

# ๐Ÿ 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 |

๐Ÿค– AI-enhanced โ€” based on mod data

๐Ÿ“Š 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

๐Ÿ“‹ All Minecraft Plugins Mods ๐Ÿ† Top 25 ๐Ÿ“‚ More bukkit ๐Ÿ‘ค More by Baumkrieger69 ๐Ÿ”Ž Similar Mods ๐ŸŒ Best bukkit (All Games) ๐Ÿ”€ Check Compatibility โš–๏ธ Compare Mods ๐Ÿ†• New Mods