diff options
author | Jesse Plamondon-Willard <github@jplamondonw.com> | 2018-02-24 16:51:37 -0500 |
---|---|---|
committer | Jesse Plamondon-Willard <github@jplamondonw.com> | 2018-02-24 16:51:37 -0500 |
commit | d7696912e007a2b455a2fd5e1974924d2efe83b3 (patch) | |
tree | f3bcd5f75e8028ff2386321287899ce491f892ea /src/SMAPI/Framework/ModLoading | |
parent | 68528f7decadccb4c5ed62f3fff10aeff22dcd43 (diff) | |
download | SMAPI-d7696912e007a2b455a2fd5e1974924d2efe83b3.tar.gz SMAPI-d7696912e007a2b455a2fd5e1974924d2efe83b3.tar.bz2 SMAPI-d7696912e007a2b455a2fd5e1974924d2efe83b3.zip |
reimplement log parser with serverside parsing and vue.js frontend
Diffstat (limited to 'src/SMAPI/Framework/ModLoading')
-rw-r--r-- | src/SMAPI/Framework/ModLoading/InstructionHandleResult.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/SMAPI/Framework/ModLoading/InstructionHandleResult.cs b/src/SMAPI/Framework/ModLoading/InstructionHandleResult.cs index 6a7e0519..cfa23d08 100644 --- a/src/SMAPI/Framework/ModLoading/InstructionHandleResult.cs +++ b/src/SMAPI/Framework/ModLoading/InstructionHandleResult.cs @@ -23,7 +23,7 @@ namespace StardewModdingAPI.Framework.ModLoading /// <summary>The instruction is compatible, but uses the <c>dynamic</c> keyword which won't work on Linux/Mac.</summary> DetectedDynamic, - /// <summary>The instruction is compatible, but references <see cref="SpecialisedEvents.InvokeUnvalidatedUpdateTick"/> which may impact stability.</summary> + /// <summary>The instruction is compatible, but references <see cref="SpecialisedEvents.UnvalidatedUpdateTick"/> which may impact stability.</summary> DetectedUnvalidatedUpdateTick } } |