Skip to content

Commit

Permalink
Fixed alias arguments (#1581)
Browse files Browse the repository at this point in the history
* Fix alias arguments

Reverted a change made in #1539

* Fix

---------

Co-authored-by: Dimenpsyonal <64012878+Dimenpsyonal@users.noreply.github.com>
  • Loading branch information
EasternBloxxer and Dimenpsyonal authored Aug 11, 2024
1 parent df212e6 commit 4f5dbc3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Loader/Version.model.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"ClassName": "NumberValue",
"Properties": {
"Value": 261
"Value": 260
}
}
2 changes: 1 addition & 1 deletion MainModule/Server/Core/Admin.luau
Original file line number Diff line number Diff line change
Expand Up @@ -439,7 +439,7 @@ return function(Vargs, GetEnv)
for i,argType in argTab do
local replaceWith = suppliedArgs[i]
if replaceWith then
out = string.gsub(out, SanitizePattern(argType), SanitizePattern(replaceWith))
out = string.gsub(out, SanitizePattern(argType), replaceWith)
end
end

Expand Down

0 comments on commit 4f5dbc3

Please # to comment.