From 2c294d8547e026c6bdb92eedb6dccfb040c18001 Mon Sep 17 00:00:00 2001 From: ccuser44 <68124053+ccuser44@users.noreply.github.com> Date: Sat, 23 Nov 2024 00:09:21 +0200 Subject: [PATCH] Better clarify messages description (#1758) * Fix messages setting description * Fix messagees setting description * Clarify admin level * Fix typo * Fix typo * Remove markdown formatting * Remove markdown formatting --- Loader/Config/Settings.luau | 4 ++-- MainModule/Server/Dependencies/DefaultSettings.luau | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Loader/Config/Settings.luau b/Loader/Config/Settings.luau index 3d91cb17c..04a748438 100644 --- a/Loader/Config/Settings.luau +++ b/Loader/Config/Settings.luau @@ -296,7 +296,7 @@ settings.SongHint = true -- Display a hint with the current song nam settings.TopBarShift = false -- By default hints and notifications will appear from the top edge of the window. Set this to true if you don't want hints/notifications to appear in that region. settings.DefaultTheme = "Default" -- Theme to be used as a replacement for "Default". The new replacement theme can still use "Default" as its Base_Theme however any other theme that references "Default" as its redirects to this theme. settings.HiddenThemes = {} -- Hide themes from the theme selector tab inside the userpanel. Each theme name must be the specific name such as "Mobilius" -settings.Messages = {} -- A list of notification messages to show HeadAdmins and above on join +settings.Messages = {} -- A list of notifications shown on join. Messages can either be strings or tables. Messages are shown to HeadAdmins+ by default but tables can define a different minimum level via .Level settings.AutoClean = false -- Will auto clean workspace of things like hats and tools settings.AutoCleanDelay = 60 -- Time between auto cleans settings.AutoBackup = false -- Run :backupmap automatically when the server starts. To restore the map, run :restoremap @@ -471,7 +471,7 @@ descs.TopBarShift = [[ By default hints and notifs will appear from the top edge descs.DefaultTheme = [[ Theme to be used as a replacement for "Default". The new replacement theme can still use "Default" as its Base_Theme however any other theme that references "Default" as its redirects to this theme. ]] descs.ReJail = [[ If true then when a player rejoins they'll go back into jail. Or if the moderator leaves everybody gets unjailed ]] -descs.Messages = [[ A list of notification messages to show HeadAdmins and above on join ]] +descs.Messages = [[ A list of notifications shown on join. Messages can either be strings or tables. Messages are shown to HeadAdmins+ by default but tables can define a different minimum level via .Level ]] descs.AutoClean = [[ Will auto clean workspace of things like hats and tools ]] descs.AutoBackup = [[ (not recommended) Run a map backup command when the server starts, this is mostly useless as clients cannot modify the server. To restore the map run :restoremap ]] diff --git a/MainModule/Server/Dependencies/DefaultSettings.luau b/MainModule/Server/Dependencies/DefaultSettings.luau index ac5f5129a..c19cbef1d 100644 --- a/MainModule/Server/Dependencies/DefaultSettings.luau +++ b/MainModule/Server/Dependencies/DefaultSettings.luau @@ -296,7 +296,7 @@ settings.Notification = true -- Whether or not to show the "You're an settings.SongHint = true -- Display a hint with the current song name and ID when a song is played via :music settings.TopBarShift = false -- By default hints and notifications will appear from the top edge of the window. Set this to true if you don't want hints/notifications to appear in that region. settings.HiddenThemes = {} -- Hide themes from the theme selector tab inside the userpanel. Each theme name must be the specific name such as "Mobilius" -settings.Messages = {} -- A list of notification messages to show HeadAdmins and above on join +settings.Messages = {} -- A list of notifications shown on join. Messages can either be strings or tables. Messages are shown to HeadAdmins+ by default but tables can define a different minimum level via .Level settings.AutoClean = false -- Will auto clean workspace of things like hats and tools settings.AutoCleanDelay = 60 -- Time between auto cleans settings.AutoBackup = false -- Run :backupmap automatically when the server starts. To restore the map, run :restoremap @@ -471,7 +471,7 @@ descs.SongHint = [[ Display a hint with the current song name and ID when a song descs.TopBarShift = [[ By default hints and notifs will appear from the top edge of the window. Set this to true if you don't want hints/notifications to appear in that region. ]] descs.ReJail = [[ If true then when a player rejoins they'll go back into jail. Or if the moderator leaves everybody gets unjailed ]] -descs.Messages = [[ A list of notification messages to show HeadAdmins and above on join ]] +descs.Messages = [[ A list of notifications shown on join. Messages can either be strings or tables. Messages are shown to HeadAdmins+ by default but tables can define a different minimum level via .Level ]] descs.AutoClean = [[ Will auto clean workspace of things like hats and tools ]] descs.AutoBackup = [[ (not recommended) Run a map backup command when the server starts, this is mostly useless as clients cannot modify the server. To restore the map run :restoremap ]]