Skip to content

Commit

Permalink
Changelog update & minor alias change
Browse files Browse the repository at this point in the history
  • Loading branch information
Sceleratis committed Dec 18, 2021
1 parent a956c11 commit a7eeccc
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 10 deletions.
10 changes: 5 additions & 5 deletions MainModule/Server/Commands/Moderators.lua
Original file line number Diff line number Diff line change
Expand Up @@ -4167,7 +4167,7 @@ return function(Vargs, env)

ListServers = {
Prefix = Settings.Prefix;
Commands = {"servers", "privateservers"};
Commands = {"privateservers", "createdservers"};
Args = {};
Hidden = false;
Description = "Shows you a list of private servers that were created with :makeserver";
Expand Down Expand Up @@ -4679,11 +4679,11 @@ return function(Vargs, env)
Function = function(plr: Player, args: {string})
assert(args[1], "Missing player name")
assert(args[2] and tonumber(args[2]), "Missing or invalid AudioId")

local volume = tonumber(args[3]) or 1
local looped = args[4]
local pitch = tonumber(args[5]) or 1

if (looped) then
if looped == "true" or looped == "1" then
looped = true
Expand All @@ -4693,7 +4693,7 @@ return function(Vargs, env)
else
looped = true -- should be on by default
end

local audio = service.New("Sound", {
Volume = volume;
Looped = looped;
Expand All @@ -4709,7 +4709,7 @@ return function(Vargs, env)
local new = audio:Clone()

if (looped == false) then
new.Ended:Connect(function()
new.Ended:Connect(function()
new:Destroy() -- Destroy character audio after sound is finished if loop is off.
end)
end
Expand Down
2 changes: 1 addition & 1 deletion MainModule/Server/Plugins/Cross_Server.lua
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ return function(Vargs)

Commands.CrossServerList = {
Prefix = Settings.Prefix;
Commands = {"serverlist", "servers", "crossserverlist", "listservers"};
Commands = {"serverlist", "gameservers", "crossserverlist", "listservers"};
Args = {};
Description = "Attempts to list all active servers (at the time the command was ran)";
AdminLevel = "Admins";
Expand Down
13 changes: 9 additions & 4 deletions MainModule/Server/Shared/Changelog.lua
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,19 @@ return {
"";
"[v231 WIP]";
"*Credits updated";
"*:servers alias for :privateservers is now :createdservers";
"*:servers alias for :crossservers changed to :gameservers";
"(Git/Coasterteam) Various bug, vulnerability, fixes and changes, additional logging (already in release)";
"(Git/CommodoreGamer118) Misc visibility changes/fixes";
"(Git/GalacticInspired) Disallow players to see server ip in !serverinfo #583";
"(Git/spaggos) !donorneon Command fix. #597";
"(Git/P3tray) Added service event for console toggle (service.Events.ToggleConsole)";
"(Git/moo1210) UserPanel, \"Admins\" Command, server change #591";
"(Git/fxeP1) UserPanel, \"Admins\" Command, server change #591";
"(Git/P3tray) Add commandto open CommsCenter";
"(Git/P3tray) Fix console";
"(Git/Expertcoderz) Minor code improvements/fixes #601";
"(Git/Expertcoderz) Added text truncation for Groups tab entries";
"(Git/ccuser44) Improvements and fixes to anti-cheat #563";
"(Git/alau740) Mark :trigger as a fun command #607";
"(Git/Expertcoderz) Fix critical typo in comments #611";
"(Git/Expertcoderz) [Minor] Fixed donor status displayed on !profile to include donors who donated not with the pass #613";
"(Git/Expertcoderz) Minor code improvements to softshutdown & F3X #595";
"(Git/Expertcoderz) Fix :removetools & :removetool #582";
"(Git/Expertcoderz) Tool Center (enhanced :tools) + TextPrompt UI #587";
Expand All @@ -24,6 +26,9 @@ return {
"(Git/karl-police) Uncommented and modified \"Trail\" command #584";
"(Git/karl-police) Added a command called \"TransparentPart\", which allows you to make individual parts and more transparent #590";
"(Git/karl-police) Fixed the \"particle\" command #576";
"(Git/karl-police) Change \"Transparency\" command to make everything transparent #608";
"(Git/karl-police) Added new commands to change some player animations #609";
"(git/karl-police) Enhanced the \"CharacterAudio\" command #610";
"";
"[v230 11.25.2021 14:00 EST]";
"*Happy Thanksgiving (To those in the US)";
Expand Down

0 comments on commit a7eeccc

Please sign in to comment.