From 4da38e1317f6ebd6485b04482eb3d2ffd0507530 Mon Sep 17 00:00:00 2001 From: Jesse Plamondon-Willard Date: Sat, 26 Mar 2022 00:52:04 -0400 Subject: [PATCH] add missing [Obsolete] tag --- src/SMAPI/ICommandHelper.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/SMAPI/ICommandHelper.cs b/src/SMAPI/ICommandHelper.cs index 196e1051..b92e5162 100644 --- a/src/SMAPI/ICommandHelper.cs +++ b/src/SMAPI/ICommandHelper.cs @@ -21,6 +21,7 @@ namespace StardewModdingAPI /// The command name. /// The command arguments. /// Returns whether a matching command was triggered. + [Obsolete("Manually triggering console commands will no longer be supported in SMAPI 4.0.0.")] bool Trigger(string name, string[] arguments); } }