diff options
author | Jesse Plamondon-Willard <Pathoschild@users.noreply.github.com> | 2022-03-26 00:52:04 -0400 |
---|---|---|
committer | Jesse Plamondon-Willard <Pathoschild@users.noreply.github.com> | 2022-03-26 00:52:04 -0400 |
commit | 4da38e1317f6ebd6485b04482eb3d2ffd0507530 (patch) | |
tree | d594dd76f76b910e70c1565ae7eb7716c29d7494 /src/SMAPI/ICommandHelper.cs | |
parent | 3707f481a567df5149aea00ffb14cddb7b14fccb (diff) | |
download | SMAPI-4da38e1317f6ebd6485b04482eb3d2ffd0507530.tar.gz SMAPI-4da38e1317f6ebd6485b04482eb3d2ffd0507530.tar.bz2 SMAPI-4da38e1317f6ebd6485b04482eb3d2ffd0507530.zip |
add missing [Obsolete] tag
Diffstat (limited to 'src/SMAPI/ICommandHelper.cs')
-rw-r--r-- | src/SMAPI/ICommandHelper.cs | 1 |
1 files changed, 1 insertions, 0 deletions
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 /// <param name="name">The command name.</param> /// <param name="arguments">The command arguments.</param> /// <returns>Returns whether a matching command was triggered.</returns> + [Obsolete("Manually triggering console commands will no longer be supported in SMAPI 4.0.0.")] bool Trigger(string name, string[] arguments); } } |