Skip to content

Commit 9bd03d0

Browse files
committed
Tibu Bomb offset fix
1 parent 2311191 commit 9bd03d0

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src_hudhelper/hud_helper.lua

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -529,7 +529,8 @@ local function InitFunctions()
529529
--Keys or Bombs only
530530
if specificResource then
531531
if specificResource == "Bombs" then
532-
return Vector(0, repPlusOffset + twinOffset + (offset > 0 and -1 or 0))
532+
local stupidJEOffset = ((offset - p1TwinOffset) > 0 or p1TwinOffset == 0) and 0 or 1
533+
return Vector(0, repPlusOffset + p1TwinOffset + (offset > 0 and -1 or 0) + stupidJEOffset)
533534
elseif specificResource == "Keys" then
534535
local keysOffset = p1TwinOffset + poopAndBombsOffset
535536
if poopAndBombsOffset == 0 and bethOffset > 0 then

0 commit comments

Comments
 (0)