diff --git a/CHANGELOG.md b/CHANGELOG.md index 080067cb..56b3f966 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -14,6 +14,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) ## 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 692eeb01..684ac97e 100644 --- a/TShockAPI/Commands.cs +++ b/TShockAPI/Commands.cs @@ -549,7 +549,7 @@ namespace TShockAPI { HelpText = "Heals a player in HP and MP." }); - add(new Command(Permissions.kill, Kill, "kill") + add(new Command(Permissions.kill, Kill, "kill", "slay") { HelpText = "Kills another player." });