Releases: SrCodexStudio/ServerBooster
ServerBooster 3.0.1 [No-Preview]
Premium: https://builtbybit.com/resources/serverbooster.92479/updates
The free version will be released in 1–2 weeks. It is not mandatory to purchase the PREMIUM resource — it is only meant to support the project. Both the FREE and PREMIUM versions include the same improvements; the only difference is that the FREE version takes some time to be uploaded to GitHub.
ServerBooster v3.0.0
Release Date: February 26, 2025
Compatible: Minecraft 1.17.1 - 1.21.x | Paper, Spigot
Bug Fixed: Piglin Bartering with Stacked Items
When a Piglin picked up a gold stack created by the item stacking system (e.g., 100 gold ingots), it only performed 1 trade instead of the expected 100 trades. This completely broke Piglin farms and bartering mechanics.
Root Cause:
The plugin ignored non-player entities, causing Piglins to see amount=1 instead of the real stacked amount stored in PDC.
Solution:
The plugin now properly restores the real item amount before mobs pick them up, allowing Minecraft to process all trades correctly.
What's Changed
- Added
clearStackData()method to remove PDC stacking data - Modified
onEntityPickupto handle mob pickups correctly - Events are now cancelled for items with PDC data, then restored for vanilla processing
- For stacks >64: splits into 64 + remainder item
How It Works Now
Example: 100 Gold Ingots
Tick 1: Item has PDC (amount=1, stacked=100)
Piglin tries to pickup
Plugin: CANCEL, restore amount=64, create item with 36
Tick 2: Piglin picks up 64 ingots (vanilla)
64 trades performed
Tick 3: Piglin picks up 36 ingots
36 trades performed
Result: 100 trades completed successfully
Performance
| Stack Size | Items Created |
|---|---|
| 1 - 64 | 0 |
| 65+ | 1 (remainder) |
Zero lag - Maximum 1 entity spawned per pickup, regardless of stack size.
Installation
- Download
ServerBooster-3.0.0.jar - Replace the old JAR in your
plugins/folder - Restart your server
Full Changelog: v2.0.9...v3.0.0
