diff --git a/Content/ExampleMod/Localization/En.json b/Content/ExampleMod/Localization/en.json similarity index 100% rename from Content/ExampleMod/Localization/En.json rename to Content/ExampleMod/Localization/en.json diff --git a/ExampleMod.csproj b/ExampleMod.csproj index 0640465..7483ba5 100644 --- a/ExampleMod.csproj +++ b/ExampleMod.csproj @@ -1,11 +1,11 @@ - net6.0 + net7.0 - + diff --git a/ExampleModGrassSitAction.cs b/ExampleModGrassSitAction.cs index 56ef687..e5e50c5 100644 --- a/ExampleModGrassSitAction.cs +++ b/ExampleModGrassSitAction.cs @@ -16,7 +16,7 @@ public class ExampleModGrassSitAction : MultiAction { protected override IEnumerable CreateFirstActions() { // we want to walk to the location clicked, so we use the current action info - yield return ActionType.GoHere.Construct(this.Info); + yield return ActionType.GoHere.Construct(this.Info); // if multiple things should be done before starting this action, they can all be returned here }