Skip to content

Commit

Permalink
Merge pull request #1590 from Kenshiin13/fix-adjustments
Browse files Browse the repository at this point in the history
fix(es_extended/client/modules/adjustments): `SetHudComponentPosition` expects float
  • Loading branch information
Mycroft-Studios authored Jan 12, 2025
2 parents 3e58606 + 9019935 commit 88a72a7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion [core]/es_extended/client/modules/adjustments.lua
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ function Adjustments:RemoveHudComponents()
for i = 1, #Config.RemoveHudComponents do
if Config.RemoveHudComponents[i] then
SetHudComponentSize(i, 0.0, 0.0)
SetHudComponentPosition(i, 900, 900)
SetHudComponentPosition(i, 900.0, 900.0)
end
end
end
Expand Down

0 comments on commit 88a72a7

Please sign in to comment.