From 323c611016d3b44760cd866a6dba2772aed2c1d7 Mon Sep 17 00:00:00 2001 From: Lachlan Leone Date: Sat, 20 Jan 2024 22:32:35 +1100 Subject: [PATCH] v0.1.1 --- Changelogs/Github/v0.1.1.MD | 3 +++ Changelogs/Workshop/v0.1.1.MD | 3 +++ Components/Properties/CActivities.cs | 3 ++- Components/Properties/CLonelyDistance.cs | 3 ++- Components/Properties/CPreferredFoods.cs | 3 ++- Components/Properties/CRoamNearOwner.cs | 3 ++- Components/Properties/CSleepingPositionOffset.cs | 3 ++- Components/Properties/CStandBackFromFood.cs | 3 ++- Components/Properties/CStapleAppliances.cs | 3 ++- Interfaces/IPetProperty.cs | 2 +- Mod.cs | 2 +- 11 files changed, 22 insertions(+), 9 deletions(-) create mode 100644 Changelogs/Github/v0.1.1.MD create mode 100644 Changelogs/Workshop/v0.1.1.MD diff --git a/Changelogs/Github/v0.1.1.MD b/Changelogs/Github/v0.1.1.MD new file mode 100644 index 0000000..328f5dd --- /dev/null +++ b/Changelogs/Github/v0.1.1.MD @@ -0,0 +1,3 @@ +# Release Notes v0.1.0 + +- Fixed loading issues \ No newline at end of file diff --git a/Changelogs/Workshop/v0.1.1.MD b/Changelogs/Workshop/v0.1.1.MD new file mode 100644 index 0000000..aef2626 --- /dev/null +++ b/Changelogs/Workshop/v0.1.1.MD @@ -0,0 +1,3 @@ +[h1]Release Notes v0.1.1[/h1] + +- Fixed loading issues \ No newline at end of file diff --git a/Components/Properties/CActivities.cs b/Components/Properties/CActivities.cs index 4b2e14f..1f86ab6 100644 --- a/Components/Properties/CActivities.cs +++ b/Components/Properties/CActivities.cs @@ -1,9 +1,10 @@ +using KitchenMods; using Pets.Interfaces; using Unity.Collections; namespace Pets.Components.Properties { - public struct CActivities : IPetProperty + public struct CActivities : IPetProperty, IModComponent { public FixedListInt64 Activities; } diff --git a/Components/Properties/CLonelyDistance.cs b/Components/Properties/CLonelyDistance.cs index 9227ca4..5dda9b1 100644 --- a/Components/Properties/CLonelyDistance.cs +++ b/Components/Properties/CLonelyDistance.cs @@ -1,8 +1,9 @@ +using KitchenMods; using Pets.Interfaces; namespace Pets.Components.Properties { - public struct CLonelyDistance : IPetProperty + public struct CLonelyDistance : IPetProperty, IModComponent { public float Distance; diff --git a/Components/Properties/CPreferredFoods.cs b/Components/Properties/CPreferredFoods.cs index cd870ba..183065d 100644 --- a/Components/Properties/CPreferredFoods.cs +++ b/Components/Properties/CPreferredFoods.cs @@ -1,9 +1,10 @@ +using KitchenMods; using Pets.Interfaces; using Unity.Collections; namespace Pets.Components.Properties { - public struct CPreferredFoods : IPetProperty + public struct CPreferredFoods : IPetProperty, IModComponent { public FixedListInt32 PreferredFoods; } diff --git a/Components/Properties/CRoamNearOwner.cs b/Components/Properties/CRoamNearOwner.cs index 0bd5e1b..72ebe78 100644 --- a/Components/Properties/CRoamNearOwner.cs +++ b/Components/Properties/CRoamNearOwner.cs @@ -1,8 +1,9 @@ +using KitchenMods; using Pets.Interfaces; namespace Pets.Components.Properties { - public struct CRoamNearOwner : IPetProperty + public struct CRoamNearOwner : IPetProperty, IModComponent { public float Distance; diff --git a/Components/Properties/CSleepingPositionOffset.cs b/Components/Properties/CSleepingPositionOffset.cs index 8e2724b..9883817 100644 --- a/Components/Properties/CSleepingPositionOffset.cs +++ b/Components/Properties/CSleepingPositionOffset.cs @@ -1,9 +1,10 @@ +using KitchenMods; using Pets.Interfaces; using UnityEngine; namespace Pets.Components.Properties { - public struct CSleepingPositionOffset : IPetProperty + public struct CSleepingPositionOffset : IPetProperty, IModComponent { public Vector2 Offset; } diff --git a/Components/Properties/CStandBackFromFood.cs b/Components/Properties/CStandBackFromFood.cs index 2f84eff..1a1e48d 100644 --- a/Components/Properties/CStandBackFromFood.cs +++ b/Components/Properties/CStandBackFromFood.cs @@ -1,8 +1,9 @@ +using KitchenMods; using Pets.Interfaces; namespace Pets.Components.Properties { - public struct CStandBackFromFood : IPetProperty + public struct CStandBackFromFood : IPetProperty, IModComponent { public float Distance; } diff --git a/Components/Properties/CStapleAppliances.cs b/Components/Properties/CStapleAppliances.cs index e79850f..c2dccf5 100644 --- a/Components/Properties/CStapleAppliances.cs +++ b/Components/Properties/CStapleAppliances.cs @@ -1,9 +1,10 @@ +using KitchenMods; using Pets.Interfaces; using Unity.Collections; namespace Pets.Components.Properties { - public struct CStapleAppliances : IPetProperty + public struct CStapleAppliances : IPetProperty, IModComponent { public FixedListInt64 Appliances; } diff --git a/Interfaces/IPetProperty.cs b/Interfaces/IPetProperty.cs index 569a4fa..46e5078 100644 --- a/Interfaces/IPetProperty.cs +++ b/Interfaces/IPetProperty.cs @@ -2,7 +2,7 @@ using KitchenMods; namespace Pets.Interfaces { - public interface IPetProperty : IModComponent + public interface IPetProperty { } diff --git a/Mod.cs b/Mod.cs index 9cd9275..0683f1a 100644 --- a/Mod.cs +++ b/Mod.cs @@ -20,7 +20,7 @@ namespace Pets { public const string MOD_GUID = "com.starfluxgames.pets"; public const string MOD_NAME = "Pets"; - public const string MOD_VERSION = "0.1.0"; + public const string MOD_VERSION = "0.1.1"; public const string MOD_AUTHOR = "StarFluxGames"; public const string MOD_GAMEVERSION = ">=1.1.8";