Skip to content

Commit

Permalink
Better clarify messages description (#1758)
Browse files Browse the repository at this point in the history
* Fix messages setting description

* Fix messagees setting description

* Clarify admin level

* Fix typo

* Fix typo

* Remove markdown formatting

* Remove markdown formatting
  • Loading branch information
ccuser44 authored Nov 22, 2024
1 parent a73d6e6 commit 2c294d8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Loader/Config/Settings.luau
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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 ]]
Expand Down
4 changes: 2 additions & 2 deletions MainModule/Server/Dependencies/DefaultSettings.luau
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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 ]]
Expand Down

0 comments on commit 2c294d8

Please sign in to comment.