Commit 09e0f806e0e2ffc52105991616dbe0a35715dc16
Merge branch 'fix_double_boost_chant_hymn' into 'master'
fix talent level of chants & hymns boosted by difficulty twice. In high difficulties, Chant of XXX or Hymn of XXX has higher level than Chant Acolyte or Hymn Acolyte accordingly, because they get double boost from difficulty. This merge request add "no_difficulty_boost" tag to Chant Acolyte and Hymn Acolyte to avoid double boost. See merge request !743
Showing
2 changed files
with
2 additions
and
0 deletions
... | ... | @@ -276,6 +276,7 @@ newTalent{ |
276 | 276 | points = 5, |
277 | 277 | mode = "passive", |
278 | 278 | positive = 0, -- forces learning of Positive pool |
279 | + no_difficulty_boost = true, -- avoid double boost from difficulty | |
279 | 280 | passives = function(self, t) |
280 | 281 | self:setTalentTypeMastery("celestial/chants-chants", self:getTalentMastery(t)) |
281 | 282 | end, | ... | ... |
... | ... | @@ -364,6 +364,7 @@ newTalent{ |
364 | 364 | points = 5, |
365 | 365 | mode = "passive", |
366 | 366 | negative = 0, -- forces learning of Negative pool |
367 | + no_difficulty_boost = true, -- avoid double boost from difficulty | |
367 | 368 | passives = function(self, t) |
368 | 369 | self:setTalentTypeMastery("celestial/hymns-hymns", self:getTalentMastery(t)) |
369 | 370 | end, | ... | ... |
-
Please register or login to post a comment