Skip to content

Commit

Permalink
fix(es_extended/client/modules/adjustments): `SetHudComponentPosition…
Browse files Browse the repository at this point in the history
…` expects float
  • Loading branch information
Kenshiin13 committed Jan 9, 2025
1 parent e0d9b2b commit 9019935
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 9019935

Please sign in to comment.