Skip to content

Commit 0a73d54

Browse files
committed
Quick skill fix
-Fixed bug that would break the skill JSON parser, HP values are actually set now
1 parent 40d7fc1 commit 0a73d54

File tree

1 file changed

+11
-8
lines changed
  • Xeohelios' Fire Emblem Tabletop Companion/1.16

1 file changed

+11
-8
lines changed

Xeohelios' Fire Emblem Tabletop Companion/1.16/FETTC.js

+11-8
Original file line numberDiff line numberDiff line change
@@ -3693,7 +3693,11 @@ on('chat:message', function(msg) {
36933693
} else {
36943694
who = 'character|' + who.id;
36953695
}
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+
}
36973701
log(WPSkillA)
36983702
let newSkill = findObjs({ characterid: attacker.id, type: "ability", name: skillName })[0];
36993703
log(newSkill)
@@ -4173,14 +4177,13 @@ on('chat:message', function(msg) {
41734177
//:OOOOOO
41744178
}
41754179
}
4176-
CurrHPA.setWithWorker({
4177-
current: HPA
4178-
});
4179-
CurrHPB.setWithWorker({
4180-
current: HPB
4181-
});
41824180
}
4183-
4181+
CurrHPA.setWithWorker({
4182+
current: HPA
4183+
});
4184+
CurrHPB.setWithWorker({
4185+
current: HPB
4186+
});
41844187
//recursionnn
41854188
if (obj.children_skills != []) {
41864189
for (var y in obj.children_skills) {

0 commit comments

Comments
 (0)