Stacker UI Improvements + Critical Exploit Fixes#160
Merged
ptthanh02 merged 2 commits intoNighterDevelopment:mainfrom Feb 16, 2026
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Hey, just pushing some changes to the Stacker GUI and patching up some pretty bad exploits I found in the sell system.
As a server owner, I actually caught multiple people abusing these to print millions of dollars and inflate the economy. It got so bad I had to completely disable the plugin on my production server until I could get these fixed. On top of the security fixes, the new bulk actions are a massive resource saver since people aren't forced to stack hundred of spawners one by one anymore.
1. Stacker GUI: Bulk Actions & Resource Optimization
New GUI Layout:
If you need me to make the slot numbers configerable in config, let me know, and I'll have it ready.
2. Sell UI Optimization
3. The Big One: Sell All Exploit Fixes
The sell system had some massive holes where people were printing money.
The Fix:
Everything is now strictly synchronous and locked down. The server now finishes the whole transaction (calculating, paying, and removing items) in one go on the main thread. If you try to double-click or have a friend try to "help" sell, the server will just tell you an "Action is in progress."
Examples of what was being abused:
4. Technical Bits
Everything is tested and building fine on Gradle, and both exploit have been heavily tested by me, and in production by players.