From c1f14367e6b882cc282b66c9d1635b97551f941b Mon Sep 17 00:00:00 2001 From: stacey <57187883+moisterrific@users.noreply.github.com> Date: Sat, 31 Jul 2021 14:01:17 -0400 Subject: [PATCH] Add respawn and respawnother permissions --- TShockAPI/Permissions.cs | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/TShockAPI/Permissions.cs b/TShockAPI/Permissions.cs index 7df1ca83..7de195d2 100644 --- a/TShockAPI/Permissions.cs +++ b/TShockAPI/Permissions.cs @@ -436,6 +436,12 @@ namespace TShockAPI [Description("User can kill others.")] public static readonly string kill = "tshock.kill"; + + [Description("Player can respawn themselves.")] + public static readonly string respawn = "tshock.respawn"; + + [Description("Player can respawn others.")] + public static readonly string respawnother = "tshock.respawn.other"; [Description("Allows you to bypass the max slots for up to 5 slots above your max.")] public static readonly string reservedslot = "tshock.reservedslot";