From c8ad480700e992ddba8b7f2fe14c567fb83e773b Mon Sep 17 00:00:00 2001 From: Vildravn Date: Sun, 20 Feb 2022 00:03:01 +0100 Subject: [PATCH] bug #1908: Set fireblast pushback to 0 This is just a quick fix, please revert this later --- src/server/config/spells/spellFireblast.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/server/config/spells/spellFireblast.js b/src/server/config/spells/spellFireblast.js index ad90f442..7c0b51b2 100644 --- a/src/server/config/spells/spellFireblast.js +++ b/src/server/config/spells/spellFireblast.js @@ -1,4 +1,6 @@ const getTargetPos = (physics, obj, m, pushback) => { + pushback = 0; // TEMPORARY FIX, PLEASE REVERT + let targetPos = { x: m.x, y: m.y