You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- [New] Nightbreak content management integration - content packages can now be downloaded and updated directly through Nightbreak accounts
- [New] /bs downloadall command to bulk download all available content packages
- [New] /bs updatecontent command to update outdated content packages
- [New] Revamped first-time setup menu with three options: Recommended Setup (Nightbreak-guided), Manual Setup, and Use Current Content
- [New] Setup menu now shows real-time access info and out-of-date status for content packages
- [New] Plugin initialization now uses MagmaCore's async/sync initialization system with progress reporting
- [Fix] Fixed content package and treasure config duplication on reload
- [Tweak] Updated MagmaCore dependency to 1.28-SNAPSHOT
- [Tweak] Adjusted default spawn distances - surface: 31→27, sky: 95→90, liquid: 65→60
- [Tweak] Reload command refactored to use dedicated content reload method instead of full plugin restart
- [Tweak] Updated help text and setup menus to reference Nightbreak workflow
Copy file name to clipboardExpand all lines: src/main/java/com/magmaguy/betterstructures/commands/BetterStructuresCommand.java
+2-1Lines changed: 2 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -19,7 +19,8 @@ public BetterStructuresCommand() {
19
19
@Override
20
20
publicvoidexecute(CommandDatacommandData) {
21
21
Logger.sendMessage(commandData.getCommandSender(), "BetterStructures is a plugin that adds random structures to your Minecraft world!");
22
-
Logger.sendMessage(commandData.getCommandSender(), "You can check the structures you have and download structures in the &2/betterstructures setup &fcommand.");
22
+
Logger.sendMessage(commandData.getCommandSender(), "You can check installed content and download structure packs in the &2/betterstructures setup &fcommand.");
23
+
Logger.sendMessage(commandData.getCommandSender(), "If your Nightbreak account is linked, you can install everything with &2/betterstructures downloadall&f.");
23
24
Logger.sendMessage(commandData.getCommandSender(), "Once a pack is installed, structures will automatically generate in freshly generated chunks. You do not have to run any commands for this to happen.");
24
25
Logger.sendMessage(commandData.getCommandSender(), "By default, OPs will get notified about new structures generating until they disable these messages.");
0 commit comments