Skip to content

Commit

Permalink
Remove global initialization scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
autonordev committed Jul 9, 2023
1 parent d0117aa commit a25f4af
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
5 changes: 2 additions & 3 deletions Cmdr/BuiltInCommands/Utility/var.lua
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,10 @@ return {
Name = "var";
Aliases = {};
Description = "Gets a stored variable.";
Group = "DefaultAdmin";
Group = "DefaultUtil";
AutoExec = {
"alias \"init-edit|Edit your initialization script\" edit ${var init} \\\\\n && var= init ||",
"alias \"init-edit-global|Edit the initialization script for all users\" edit ${var $init} \\\\\n && var= $init ||",
"alias \"init-run|Re-runs the initialization script manually.\" run-lines ${var init} && run-lines ${var $init}",
"alias \"init-run|Re-runs the initialization script manually.\" run-lines ${var init}",
"init-run",
},
Args = {
Expand Down
2 changes: 1 addition & 1 deletion Cmdr/BuiltInCommands/Utility/varSet.lua
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ return {
Name = "var=";
Aliases = {};
Description = "Sets a stored value.";
Group = "DefaultAdmin";
Group = "DefaultUtil";
Args = {
{
Type = "storedKey";
Expand Down

0 comments on commit a25f4af

Please sign in to comment.