mirror of
https://github.com/JezuzLizard/BO2-Reimagined.git
synced 2025-06-09 23:02:53 -05:00
Paralyzer: fix heat percentage on HUD not disappearing when switching weapons
This commit is contained in:
@ -218,7 +218,6 @@ function HUD_AllowRoundAnimation(HUDWidget, ClientInstance)
|
|||||||
end
|
end
|
||||||
|
|
||||||
function HUD_UpdateSurvivalTeamZombie(HUDWidget, ClientInstance)
|
function HUD_UpdateSurvivalTeamZombie(HUDWidget, ClientInstance)
|
||||||
print(ClientInstance.data[1])
|
|
||||||
CoD.Zombie.IsSurvivalUsingCIAModel = ClientInstance.data[1] == 1
|
CoD.Zombie.IsSurvivalUsingCIAModel = ClientInstance.data[1] == 1
|
||||||
end
|
end
|
||||||
|
|
||||||
|
@ -472,6 +472,10 @@ CoD.AmmoAreaZombie.UpdateFuel = function (f7_arg0, f7_arg1)
|
|||||||
end
|
end
|
||||||
|
|
||||||
CoD.AmmoAreaZombie.UpdateOverheat = function (f8_arg0, f8_arg1)
|
CoD.AmmoAreaZombie.UpdateOverheat = function (f8_arg0, f8_arg1)
|
||||||
|
if CoD.AmmoAreaZombie.ShouldHideAmmoCounter(f8_arg0, f8_arg1) == true then
|
||||||
|
return
|
||||||
|
end
|
||||||
|
|
||||||
local f8_local0 = f8_arg1.overheat
|
local f8_local0 = f8_arg1.overheat
|
||||||
local f8_local1 = #f8_arg0.ammoDigits
|
local f8_local1 = #f8_arg0.ammoDigits
|
||||||
if f8_arg0.hideAmmo then
|
if f8_arg0.hideAmmo then
|
||||||
|
Reference in New Issue
Block a user