From 1bd564a9efe0f44571c9a6b87de8e30fdc6cd31b Mon Sep 17 00:00:00 2001 From: hat071af Date: Thu, 17 Oct 2024 19:24:55 -0700 Subject: [PATCH 1/2] [script] [combat-trainer] Add option for default Bard cyclic to segue to on combat end --- combat-trainer.lic | 3 +++ 1 file changed, 3 insertions(+) diff --git a/combat-trainer.lic b/combat-trainer.lic index 8beda904e0..44c24ea9d5 100644 --- a/combat-trainer.lic +++ b/combat-trainer.lic @@ -1392,6 +1392,9 @@ class SpellProcess if game_state.finish_spell_casting? echo('SpellProcess::clean_up') if $debug_mode_ct game_state.next_clean_up_step + if DRStats.guild == "Bard" && @settings.segue_spell_on_stop + DRCA.segue?(@settings.segue_spell_on_stop,@settings.segue_prep_on_stop) + end DRCA.release_cyclics(@settings.cyclic_no_release) if checkprep != 'None' DRC.bput('release spell', 'You let your concentration lapse', "You aren't preparing a spell") From 9e47e4677b424341109c3cd7b789bd0fefd051a8 Mon Sep 17 00:00:00 2001 From: hat071af Date: Thu, 17 Oct 2024 19:57:27 -0700 Subject: [PATCH 2/2] Update combat-trainer.lic --- combat-trainer.lic | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/combat-trainer.lic b/combat-trainer.lic index 44c24ea9d5..295f9a75fb 100644 --- a/combat-trainer.lic +++ b/combat-trainer.lic @@ -1393,7 +1393,7 @@ class SpellProcess echo('SpellProcess::clean_up') if $debug_mode_ct game_state.next_clean_up_step if DRStats.guild == "Bard" && @settings.segue_spell_on_stop - DRCA.segue?(@settings.segue_spell_on_stop,@settings.segue_prep_on_stop) + DRCA.segue?(@settings.segue_spell_on_stop, @settings.segue_prep_on_stop) end DRCA.release_cyclics(@settings.cyclic_no_release) if checkprep != 'None'