File tree Expand file tree Collapse file tree 2 files changed +9
-6
lines changed Expand file tree Collapse file tree 2 files changed +9
-6
lines changed Original file line number Diff line number Diff line change 33## Next Release
44
55- Fix scene sidebar buttons in v13 ([ #1048 ] ( https://github.com/ben/foundry-ironsworn/pull/1048 ) )
6+ - Enable all ruleset buttons in the sidebar ([ #1053 ] ( https://github.com/ben/foundry-ironsworn/pull/1053 ) )
67
78## 1.25.0
89
Original file line number Diff line number Diff line change @@ -190,14 +190,16 @@ export function activateSceneButtonListeners() {
190190 }
191191 addTool ( control , oracleButton )
192192
193- // Apply updates in order. If you've got IS and SI both enabled, too bad, you're in the isles
194- if ( IronswornSettings . enabledRulesets . includes ( 'classic' ) )
193+ // Apply updates in order for all enabled rulesets
194+ if ( IronswornSettings . enabledRulesets . includes ( 'classic' ) ) {
195195 ironswornifyControl ( control )
196- // HOWEVER, if you've got both SF and SI enabled, you're only in the isles
197- if ( IronswornSettings . enabledRulesets . includes ( 'sundered_isles' ) )
198- sunderedIslifyControl ( control )
199- else if ( IronswornSettings . enabledRulesets . includes ( 'starforged' ) )
196+ }
197+ if ( IronswornSettings . enabledRulesets . includes ( 'starforged' ) ) {
200198 starforgifyControl ( control )
199+ }
200+ if ( IronswornSettings . enabledRulesets . includes ( 'sundered_isles' ) ) {
201+ sunderedIslifyControl ( control )
202+ }
201203
202204 if ( controls [ 0 ] ) {
203205 controls . push ( control )
You can’t perform that action at this time.
0 commit comments