From d2d234a274b1602a14e6d241eac364c788bc6ae0 Mon Sep 17 00:00:00 2001 From: Ellpeck Date: Fri, 31 Mar 2023 13:26:11 +0200 Subject: [PATCH] 0.30.0 --- Content/ExampleMod/Localization/{En.json => en.json} | 0 ExampleMod.csproj | 4 ++-- ExampleModGrassSitAction.cs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) rename Content/ExampleMod/Localization/{En.json => en.json} (100%) 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 }