From c8f13b2933dbd9c1772538de6d7229e417dd3b49 Mon Sep 17 00:00:00 2001 From: Kamron Batman <3953314+kamronbatman@users.noreply.github.com> Date: Fri, 24 Jan 2025 18:17:55 -0800 Subject: [PATCH] fix: Fixes runebook OPL not updating with charges (#2088) --- Projects/UOContent/Items/Skill Items/Magical/Runebook.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Projects/UOContent/Items/Skill Items/Magical/Runebook.cs b/Projects/UOContent/Items/Skill Items/Magical/Runebook.cs index f8274acfa..a56389a03 100644 --- a/Projects/UOContent/Items/Skill Items/Magical/Runebook.cs +++ b/Projects/UOContent/Items/Skill Items/Magical/Runebook.cs @@ -39,10 +39,12 @@ public partial class Runebook : Item, ISecurable, ICraftable [SerializedCommandProperty(AccessLevel.GameMaster)] private string _description; + [InvalidateProperties] [SerializableField(5)] [SerializedCommandProperty(AccessLevel.GameMaster)] private int _curCharges; + [InvalidateProperties] [SerializableField(6)] [SerializedCommandProperty(AccessLevel.GameMaster)] private int _maxCharges;