From 027d3660e8dc1378b59ce5ee61dca01cbed8791b Mon Sep 17 00:00:00 2001 From: Claude Date: Sun, 22 Mar 2026 12:48:41 +0000 Subject: [PATCH] feat: Add LuckPerms web editor references to mod deployment guide Added references to LuckPerms web editor in two key sections: 1. Testing & Verification Section: - Added tip box explaining web editor - Command: /lp editor - Benefits: Visual interface, color picker, no typing errors - Reference to Subscription Automation Guide for details 2. WorldEdit Configuration Section: - Added RECOMMENDED method: Use web editor - Alternative: Console commands (for those who prefer terminal) - Clear signposting to full instructions in other guide Why This Helps: - Holly sees web editor option while testing LuckPerms - Reminded that web editor exists when configuring WorldEdit perms - Cross-reference to Subscription Automation Guide Part 3 - Choice between visual (web editor) vs terminal (console commands) Maintains consistency between both deployment guides. Chronicler #40 --- .../server-side-mod-deployment-guide.md | 38 +++++++++++++++++++ 1 file changed, 38 insertions(+) diff --git a/docs/guides/server-side-mod-deployment-guide.md b/docs/guides/server-side-mod-deployment-guide.md index 1eb1860..7f28cfe 100644 --- a/docs/guides/server-side-mod-deployment-guide.md +++ b/docs/guides/server-side-mod-deployment-guide.md @@ -671,6 +671,24 @@ The default config works, but you'll set limits via LuckPerms permissions instea **After creating LuckPerms groups (Part 3), configure WorldEdit permissions:** +**💡 RECOMMENDED: Use LuckPerms Web Editor** + +The easiest way to configure WorldEdit permissions is via the LuckPerms web editor: + +1. Join server in-game +2. Run `/lp editor` +3. Click the link to open web interface +4. Create Builder and Owner groups (see Subscription Automation Guide Part 3) +5. Add WorldEdit permissions to Builder group +6. Explicitly deny `worldedit.*` to all subscriber groups +7. Save and apply + +**See `docs/guides/subscription-automation-guide.md` Part 3 for complete web editor instructions.** + +--- + +**ALTERNATIVE: Console Commands (if you prefer terminal)** + **On ONE server console (syncs to all via MySQL):** ``` @@ -865,6 +883,26 @@ After configuring all mods on a server, test the following: # Should say "Storage: MySQL" (not h2 or sqlite) ``` +**💡 TIP: Use the LuckPerms Web Editor** + +Instead of managing permissions via console commands, you can use the visual web editor: + +1. Join the server in-game +2. Run command: `/lp editor` +3. Click the link that appears in chat +4. Opens https://luckperms.net/editor/xxxxxxxx in your browser +5. Visual interface to create groups, set permissions, configure prefixes +6. Click "Save" when done, copy the command, paste in console + +**Benefits:** +- Visual group hierarchy +- Color picker for chat prefixes +- Drag-and-drop permissions +- No typing errors +- Much faster than console commands + +**See the Subscription Automation Guide (Part 3) for detailed web editor instructions.** + #### 3. FTB Chunks Works ```