From 27fdd2a429341c16035afe72b6465062b852e31b Mon Sep 17 00:00:00 2001 From: doug1234 Date: Sun, 8 Sep 2024 22:53:19 -0400 Subject: [PATCH] Fixed ultimate magus treating widen spell as if it only required one spell slot higher instead of three. --- tpdatasrc/tpgamefiles/scr/tpModifiers/ultimate_magus.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tpdatasrc/tpgamefiles/scr/tpModifiers/ultimate_magus.py b/tpdatasrc/tpgamefiles/scr/tpModifiers/ultimate_magus.py index bc41b2685..a12fb27d4 100644 --- a/tpdatasrc/tpgamefiles/scr/tpModifiers/ultimate_magus.py +++ b/tpdatasrc/tpgamefiles/scr/tpModifiers/ultimate_magus.py @@ -299,6 +299,8 @@ def AugmentCastingRadialMenuEntry(attachee, args, evt_obj): minLevel = 4 elif feat == feat_maximize_spell: minLevel = 3 + elif feat == feat_widen_spell: + minLevel = 3 elif feat == feat_empower_spell: minLevel = 2