From b745ee1e7a26bc10e7e901ff189e8513d91b621b Mon Sep 17 00:00:00 2001 From: Kamron Batman <3953314+kamronbatman@users.noreply.github.com> Date: Thu, 13 Jun 2024 22:00:02 -0700 Subject: [PATCH] fix: Fixes skills property not editable in-game (#1833) --- Projects/Server/Mobiles/Mobile.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Projects/Server/Mobiles/Mobile.cs b/Projects/Server/Mobiles/Mobile.cs index 1580a3b3d..583ad8f4d 100644 --- a/Projects/Server/Mobiles/Mobile.cs +++ b/Projects/Server/Mobiles/Mobile.cs @@ -1001,7 +1001,7 @@ public partial class Mobile : IHued, IComparable, ISpawnable, IObjectPro public static IWeapon DefaultWeapon { get; set; } - [CommandProperty(AccessLevel.Counselor)] + [CommandProperty(AccessLevel.Counselor, canModify: true)] public Skills Skills { get; private set; } [CommandProperty(AccessLevel.Counselor, AccessLevel.Administrator)]