From a6e5b4c68eb355bb39fc9c52072b2536c7350802 Mon Sep 17 00:00:00 2001 From: Externius Date: Wed, 14 May 2025 18:39:39 +0200 Subject: [PATCH 1/3] Update nuget pkgs --- Directory.Packages.props | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/Directory.Packages.props b/Directory.Packages.props index d9bad57..c731f40 100644 --- a/Directory.Packages.props +++ b/Directory.Packages.props @@ -6,25 +6,25 @@ - - - - - - - - + + + + + + + + - + - - + + - - + + From f27352b7e79ffeb9027366759a21c1e3f8dd455a Mon Sep 17 00:00:00 2001 From: Externius Date: Wed, 14 May 2025 18:40:08 +0200 Subject: [PATCH 2/3] Fix MonsterType enum --- .../Common/Enums/EG/MonsterType.cs | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/Open5ETools.Core/Common/Enums/EG/MonsterType.cs b/src/Open5ETools.Core/Common/Enums/EG/MonsterType.cs index a0b5bf1..66a4dd4 100644 --- a/src/Open5ETools.Core/Common/Enums/EG/MonsterType.cs +++ b/src/Open5ETools.Core/Common/Enums/EG/MonsterType.cs @@ -10,11 +10,11 @@ public enum MonsterType Elemental = 6, Fey = 7, Fiend = 8, - Giant = 8, - Humanoid = 9, - Monstrosity = 10, - Ooze = 11, - Plant = 12, - SwarmOfTinyBeasts = 13, - Undead = 14 + Giant = 9, + Humanoid = 10, + Monstrosity = 11, + Ooze = 12, + Plant = 13, + SwarmOfTinyBeasts = 14, + Undead = 15 } \ No newline at end of file From 0e5ff4a2312ae8f620dd4891866d01acee1bf7a7 Mon Sep 17 00:00:00 2001 From: Externius Date: Wed, 14 May 2025 18:40:29 +0200 Subject: [PATCH 3/3] Fix format --- src/Open5ETools.Core/Common/Exceptions/ServiceException.cs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/Open5ETools.Core/Common/Exceptions/ServiceException.cs b/src/Open5ETools.Core/Common/Exceptions/ServiceException.cs index 8720924..9f05c4b 100644 --- a/src/Open5ETools.Core/Common/Exceptions/ServiceException.cs +++ b/src/Open5ETools.Core/Common/Exceptions/ServiceException.cs @@ -17,7 +17,6 @@ public ServiceException(string message, params object[] args) : base(message) Args = args; } - public ServiceException(string message, string field, params object[] args) : base(message) { Field = field;