From 3e40ade0ca2c6a391801baad31afb4e7108b081b Mon Sep 17 00:00:00 2001 From: quake1337 <3310937+bartico6@users.noreply.github.com> Date: Fri, 16 Apr 2021 10:18:40 +0200 Subject: [PATCH] Added feedback to /ungodme - The command now tells the user that the operation succeeded. Previously it would be a silent command, potentially leaving the user wondering if it worked --- TShockAPI/Commands.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/TShockAPI/Commands.cs b/TShockAPI/Commands.cs index d10ec1c3..3bff1f2b 100644 --- a/TShockAPI/Commands.cs +++ b/TShockAPI/Commands.cs @@ -6469,6 +6469,8 @@ namespace TShockAPI var godPower = CreativePowerManager.Instance.GetPower(); godPower.SetEnabledState(args.Player.Index, false); + + args.Player.SendSuccessMessage("Journey Godmode has been disabled on your character."); } #endregion Cheat Comamnds