remove TrainerMod's save and load commands in 2.0
This commit is contained in:
parent
f050f4ba31
commit
5726ebe20e
|
@ -14,6 +14,7 @@ For mod developers:
|
|||
* Removed all deprecated code.
|
||||
* Removed support for mods with no `Name`, `Version`, or `UniqueID` in their manifest.
|
||||
* Removed support for mods with a non-unique `UniqueID` value in their manifest.
|
||||
* Removed the TrainerMod `save` and `load` commands.
|
||||
|
||||
## 1.15.1
|
||||
For players:
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
using StardewModdingAPI;
|
||||
#if SMAPI_1_x
|
||||
using StardewModdingAPI;
|
||||
using StardewValley;
|
||||
using StardewValley.Menus;
|
||||
|
||||
|
@ -26,3 +27,4 @@ namespace TrainerMod.Framework.Commands.Saves
|
|||
}
|
||||
}
|
||||
}
|
||||
#endif
|
|
@ -1,4 +1,5 @@
|
|||
using StardewModdingAPI;
|
||||
#if SMAPI_1_x
|
||||
using StardewModdingAPI;
|
||||
using StardewValley;
|
||||
|
||||
namespace TrainerMod.Framework.Commands.Saves
|
||||
|
@ -25,3 +26,4 @@ namespace TrainerMod.Framework.Commands.Saves
|
|||
}
|
||||
}
|
||||
}
|
||||
#endif
|
Loading…
Reference in New Issue