Skip to content

Commit

Permalink
fix linter warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
allmtz committed Aug 9, 2023
1 parent 87e2f7b commit 2d06540
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/abilities/Snow-Bunny.ts
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ export default (G: Game) => {
},

// activate() :
activate: function (hex) {
activate: function () {
const ability = this;

ability.end();
Expand Down Expand Up @@ -261,8 +261,8 @@ export default (G: Game) => {
ability.end();
G.Phaser.camera.shake(0.01, 100, true, G.Phaser.camera.SHAKE_HORIZONTAL, true);

let damages = ability.damages;
let pureDamage = {
const damages = ability.damages;
const pureDamage = {
pure: 0,
};
const canDealPureDamage = this.isUpgraded() && target.isFrozen();
Expand Down

0 comments on commit 2d06540

Please sign in to comment.