Skip to content

Commit

Permalink
[Bug Fix] Fix #gm top level alias for #set gm (#3517)
Browse files Browse the repository at this point in the history
# Notes
- Typo lead to `#gm on` and `#gm off` not functioning.
  • Loading branch information
Kinglykrab authored Jul 30, 2023
1 parent c25cb0c commit 063d4fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion zone/gm_commands/set.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ void command_set(Client *c, const Seperator *sep)
Cmd{.cmd = "frozen", .u = "frozen [on|off]", .fn = SetFrozen, .a = {"#freeze", "#unfreeze"}},
Cmd{.cmd = "gender", .u = "gender [Gender ID]", .fn = SetGender, .a = {"#gender"}},
Cmd{.cmd = "gender_permanent", .u = "gender_permanent [Gender ID]", .fn = SetGenderPermanent, .a = {"#permagender"}},
Cmd{.cmd = "gm", .u = "gm [on|off]", .fn = SetGM, .a = {"#flymode"}},
Cmd{.cmd = "gm", .u = "gm [on|off]", .fn = SetGM, .a = {"#gm"}},
Cmd{.cmd = "gm_speed", .u = "gm_speed [on|off]", .fn = SetGMSpeed, .a = {"#gmspeed"}},
Cmd{.cmd = "gm_status", .u = "gm_status [GM Status] [Account]", .fn = SetGMStatus, .a = {"#flag"}},
Cmd{.cmd = "god_mode", .u = "god_mode [on|off]", .fn = SetGodMode, .a = {"#godmode"}},
Expand Down

0 comments on commit 063d4fb

Please sign in to comment.