From 5a8af80ead6d04620272073dc6a22b9cd2b2276e Mon Sep 17 00:00:00 2001 From: "Hongrui \"Jim\" Yu" <113254490+Luffy117@users.noreply.github.com> Date: Mon, 9 Dec 2024 20:02:26 -0500 Subject: [PATCH] Added some comments --- src/game.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/game.ts b/src/game.ts index 39e74848e..6d2afab90 100644 --- a/src/game.ts +++ b/src/game.ts @@ -1537,6 +1537,7 @@ export default class Game { case 'ability': { const args = $j.makeArray(o.args[1]); const ability = this.activeCreature.abilities[o.id]; + // If Abolished used Bonfire Spring, reset the range if (ability.title === 'Bonfire Spring') { this.activeCreature.accumulatedTeleportRange = 0; }