File tree 1 file changed +11
-8
lines changed
Xeohelios' Fire Emblem Tabletop Companion/1.16
1 file changed +11
-8
lines changed Original file line number Diff line number Diff line change @@ -3693,7 +3693,11 @@ on('chat:message', function(msg) {
3693
3693
} else {
3694
3694
who = 'character|' + who . id ;
3695
3695
}
3696
- let WPSkillA = JSON . parse ( attrLookup ( attacker , "repeating_weapons_$0_Skill_wp" , false ) ) || "" ;
3696
+ let WPSkillA = attrLookup ( attacker , "repeating_weapons_$0_Skill_wp" , false ) || "" ;
3697
+ log ( WPSkillA )
3698
+ if ( WPSkillA != "" ) {
3699
+ WPSkillA = JSON . parse ( WPSkillA )
3700
+ }
3697
3701
log ( WPSkillA )
3698
3702
let newSkill = findObjs ( { characterid : attacker . id , type : "ability" , name : skillName } ) [ 0 ] ;
3699
3703
log ( newSkill )
@@ -4173,14 +4177,13 @@ on('chat:message', function(msg) {
4173
4177
//:OOOOOO
4174
4178
}
4175
4179
}
4176
- CurrHPA . setWithWorker ( {
4177
- current : HPA
4178
- } ) ;
4179
- CurrHPB . setWithWorker ( {
4180
- current : HPB
4181
- } ) ;
4182
4180
}
4183
-
4181
+ CurrHPA . setWithWorker ( {
4182
+ current : HPA
4183
+ } ) ;
4184
+ CurrHPB . setWithWorker ( {
4185
+ current : HPB
4186
+ } ) ;
4184
4187
//recursionnn
4185
4188
if ( obj . children_skills != [ ] ) {
4186
4189
for ( var y in obj . children_skills ) {
You can’t perform that action at this time.
0 commit comments