Skip to content

Commit

Permalink
fix: ConVars redm_tickets_hud_* clamp lower bound to -1.0 (#127)
Browse files Browse the repository at this point in the history
  • Loading branch information
wopox1337 authored Jun 23, 2024
1 parent 527ddbc commit 3d0fcc9
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ Tickets_Init() {
bind_pcvar_float(
create_cvar(
"redm_tickets_hud_x", "0.5",
.has_min = true, .min_val = 0.0,
.has_min = true, .min_val = -1.0,
.has_max = true, .max_val = 1.0,
.flags = _FCVAR_FLOAT,
.description = "Tickets HUD X position."
Expand All @@ -70,7 +70,7 @@ Tickets_Init() {
bind_pcvar_float(
create_cvar(
"redm_tickets_hud_y", "0.12",
.has_min = true, .min_val = 0.0,
.has_min = true, .min_val = -1.0,
.has_max = true, .max_val = 1.0,
.flags = _FCVAR_FLOAT,
.description = "Tickets HUD Y position."
Expand Down

0 comments on commit 3d0fcc9

Please sign in to comment.