From b8ee811ac6f21bd33f7eef100eff2dc88ad0e9a2 Mon Sep 17 00:00:00 2001 From: dannuic Date: Sat, 18 Apr 2026 06:53:37 -0600 Subject: [PATCH] Fixed unmemming spells on cast --- common/patches/tob.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/common/patches/tob.cpp b/common/patches/tob.cpp index 4b2a3dd1d..78c0c11c6 100644 --- a/common/patches/tob.cpp +++ b/common/patches/tob.cpp @@ -969,6 +969,8 @@ namespace TOB eq->scribing = 2; else if (emu->scribing == 2) eq->scribing = 3; + else if (emu->scribing == 3) + eq->scribing = 4; else OUT(scribing); // TODO: can handle 4 here (I assume it's just like 2 or 3 but can have a reduction component) @@ -3861,6 +3863,8 @@ namespace TOB emu->scribing = 1; else if (eq->scribing == 3) emu->scribing = 2; + else if (eq->scribing == 4) + emu->scribing = 3; else IN(scribing); // TODO: Handle 4 here (clicky keyring)