diff --git a/CHANGELOG.md b/CHANGELOG.md index 56b3f966..053e3248 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -15,6 +15,7 @@ This is the rolling changelog for TShock for Terraria. Use past tense when addin ## Upcoming changes * Changed the world autosave message so that it no longer warns of a "potential lag spike." (@hakusaro) * Added `/slay` as an alias for `/kill` to be more consistent with other server mods. (@hakusaro) +* Added `/god` as an alias for `/godmode` to be more consistent with other server mods. (@hakusaro) ## TShock 4.5.4 * Fixed ridiculous typo in `GetDataHandlers` which caused TShock to read the wrong field in the packet for `usingBiomeTorches`. (@hakusaro, @Arthri) diff --git a/TShockAPI/Commands.cs b/TShockAPI/Commands.cs index 684ac97e..cd32f561 100644 --- a/TShockAPI/Commands.cs +++ b/TShockAPI/Commands.cs @@ -541,7 +541,7 @@ namespace TShockAPI { HelpText = "Gives another player a buff or debuff for an amount of time. Putting -1 for time will set it to 415 days." }); - add(new Command(Permissions.godmode, ToggleGodMode, "godmode") + add(new Command(Permissions.godmode, ToggleGodMode, "godmode", "god") { HelpText = "Toggles godmode on a player." });