File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 91
91
margin-top : 1.5rem ;
92
92
}
93
93
94
- .playing-card : not (.--has-verdant-leaf ) .c-is-debuffed {
94
+ .playing-card : not (.--is-blind-the-pillar ) .c-is-debuffed {
95
95
display : none;
96
96
}
97
97
Original file line number Diff line number Diff line change @@ -482,13 +482,13 @@ function updateCardState (el: Element) {
482
482
el . classList . remove (
483
483
'--is-played' ,
484
484
'--is-debuffed' ,
485
- '--has-verdant-leaf '
485
+ '--is-blind-the-pillar '
486
486
)
487
487
488
488
; [
489
489
isPlayedEl . checked ? '--is-played' : null ,
490
490
isDebuffedEl . checked ? '--is-debuffed' : null ,
491
- blindNameEl . value === 'Verdant Leaf ' && blindIsActiveEl . checked ? '--has-verdant-leaf ' : undefined ,
491
+ blindNameEl . value === 'The Pillar ' && blindIsActiveEl . checked ? '--is-blind-the-pillar ' : undefined ,
492
492
] . filter ( notNullish ) . forEach ( ( className ) => el . classList . add ( className ) )
493
493
}
494
494
You can’t perform that action at this time.
0 commit comments