From 72c06e2b3f4cb3b0c8687d073397dacec4788ed6 Mon Sep 17 00:00:00 2001 From: Rutherther Date: Sun, 1 Jan 2023 18:43:22 +0100 Subject: [PATCH] fix(game): make rest of effects vnum short instead of long --- Core/NosSmooth.Game/Data/Entities/Monster.cs | 2 +- Core/NosSmooth.Game/Data/Entities/Npc.cs | 2 +- Core/NosSmooth.Game/Data/Entities/Player.cs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Core/NosSmooth.Game/Data/Entities/Monster.cs b/Core/NosSmooth.Game/Data/Entities/Monster.cs index e5b820e..5dee0df 100644 --- a/Core/NosSmooth.Game/Data/Entities/Monster.cs +++ b/Core/NosSmooth.Game/Data/Entities/Monster.cs @@ -71,5 +71,5 @@ public class Monster : ILivingEntity public short Size { get; set; } /// - public IReadOnlyList? EffectsVNums { get; set; } + public IReadOnlyList? EffectsVNums { get; set; } } \ No newline at end of file diff --git a/Core/NosSmooth.Game/Data/Entities/Npc.cs b/Core/NosSmooth.Game/Data/Entities/Npc.cs index 8ea0f4d..0994287 100644 --- a/Core/NosSmooth.Game/Data/Entities/Npc.cs +++ b/Core/NosSmooth.Game/Data/Entities/Npc.cs @@ -71,5 +71,5 @@ public class Npc : ILivingEntity public short Size { get; set; } /// - public IReadOnlyList? EffectsVNums { get; set; } + public IReadOnlyList? EffectsVNums { get; set; } } \ No newline at end of file diff --git a/Core/NosSmooth.Game/Data/Entities/Player.cs b/Core/NosSmooth.Game/Data/Entities/Player.cs index 3564275..c7c227f 100644 --- a/Core/NosSmooth.Game/Data/Entities/Player.cs +++ b/Core/NosSmooth.Game/Data/Entities/Player.cs @@ -128,7 +128,7 @@ public class Player : ILivingEntity public short Size { get; set; } /// - public IReadOnlyList? EffectsVNums { get; set; } + public IReadOnlyList? EffectsVNums { get; set; } /// /// Gets or sets the hero level. -- 2.48.1