The Moon shines bright on this world 🎑
Get the details on Modrinth
Important
After significant effort spent on this project, there are two rules I follow that I insist any contributors also use when adding new code, mainly that ALL code must run in one of two scopes:
- GlobalRegion: code that runs on a per-world basis, in the Paper/Folia global region scheduler.
Examples: moon phase, random tick speed, weather - PlayerSpecific: code that runs specific to the triggering player, contextualized to their world and region.
Examples: player messages, commands, entity spawning
If the code doesn't fit either of those two scopes, it probably isn't a good fit for this plugin.