Skip to content

Commit

Permalink
Merge pull request lloyd-delacroix#29 from skruer/divine-exp-fix
Browse files Browse the repository at this point in the history
Fixes display issue for Divine EXP from the SeekBlessing action
  • Loading branch information
lloyd-delacroix authored Aug 6, 2022
2 parents 7316878 + 493e158 commit 5008c4a
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions actionList.js
Original file line number Diff line number Diff line change
Expand Up @@ -4774,7 +4774,8 @@ Action.SeekBlessing = new Action("Seek Blessing", {
Luck: 0.5
},
skills: {
Divine: 50
Divine() {
return Math.floor(50 * getFrostGiantsRank().bonus);
},
canStart() {
return resources.pegasus;
Expand Down Expand Up @@ -6259,4 +6260,4 @@ Action.RestoreTime = new Action("Restore Time", {

const actionsWithGoldCost = Object.values(Action).filter(
action => action.goldCost !== undefined
);
);

0 comments on commit 5008c4a

Please sign in to comment.