Fixed unmemming spells on cast

This commit is contained in:
dannuic 2026-04-18 06:53:37 -06:00
parent 08cdd8234d
commit b8ee811ac6

View File

@ -969,6 +969,8 @@ namespace TOB
eq->scribing = 2; eq->scribing = 2;
else if (emu->scribing == 2) else if (emu->scribing == 2)
eq->scribing = 3; eq->scribing = 3;
else if (emu->scribing == 3)
eq->scribing = 4;
else else
OUT(scribing); // TODO: can handle 4 here (I assume it's just like 2 or 3 but can have a reduction component) 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; emu->scribing = 1;
else if (eq->scribing == 3) else if (eq->scribing == 3)
emu->scribing = 2; emu->scribing = 2;
else if (eq->scribing == 4)
emu->scribing = 3;
else else
IN(scribing); // TODO: Handle 4 here (clicky keyring) IN(scribing); // TODO: Handle 4 here (clicky keyring)