diff options
author | Jesse Plamondon-Willard <github@jplamondonw.com> | 2018-02-19 19:32:27 -0500 |
---|---|---|
committer | Jesse Plamondon-Willard <github@jplamondonw.com> | 2018-02-19 19:32:27 -0500 |
commit | 674618664a72679812c1b51065f725fec99aa86d (patch) | |
tree | d511d598bf0adfcf38817d3fd7098bb3854e5863 /src/SMAPI/Metadata/InstructionMetadata.cs | |
parent | 5060739d62dfce0c72a5d3eeb93332aad7aa929f (diff) | |
download | SMAPI-674618664a72679812c1b51065f725fec99aa86d.tar.gz SMAPI-674618664a72679812c1b51065f725fec99aa86d.tar.bz2 SMAPI-674618664a72679812c1b51065f725fec99aa86d.zip |
add unvalidated update tick event for specialised use cases (#446)
Diffstat (limited to 'src/SMAPI/Metadata/InstructionMetadata.cs')
-rw-r--r-- | src/SMAPI/Metadata/InstructionMetadata.cs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/SMAPI/Metadata/InstructionMetadata.cs b/src/SMAPI/Metadata/InstructionMetadata.cs index f285764c..5bb461c1 100644 --- a/src/SMAPI/Metadata/InstructionMetadata.cs +++ b/src/SMAPI/Metadata/InstructionMetadata.cs @@ -74,6 +74,7 @@ namespace StardewModdingAPI.Metadata new FieldFinder(typeof(SaveGame).FullName, nameof(SaveGame.serializer), InstructionHandleResult.DetectedSaveSerialiser), new FieldFinder(typeof(SaveGame).FullName, nameof(SaveGame.farmerSerializer), InstructionHandleResult.DetectedSaveSerialiser), new FieldFinder(typeof(SaveGame).FullName, nameof(SaveGame.locationSerializer), InstructionHandleResult.DetectedSaveSerialiser), + new EventFinder(typeof(SpecialisedEvents).FullName, nameof(SpecialisedEvents.UnvalidatedUpdateTick), InstructionHandleResult.DetectedUnvalidatedUpdateTick), /**** ** rewrite CIL to fix incompatible code |