Skip to content

Commit

Permalink
chore(server/player): rename convar name convention
Browse files Browse the repository at this point in the history
  • Loading branch information
Manason committed Feb 20, 2024
1 parent c08bdc1 commit 291553e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions server/player.lua
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ local config = require 'config.server'
local defaultSpawn = require 'config.shared'.defaultSpawn
local logger = require 'modules.logger'
local storage = require 'server.storage.main'
local maxJobsPerPlayer = GetConvarInt('qbx:maxjobsperplayer', 1)
local maxGangsPerPlayer = GetConvarInt('qbx:maxgangsperplayer', 1)
local maxJobsPerPlayer = GetConvarInt('qbx:max_jobs_per_player', 1)
local maxGangsPerPlayer = GetConvarInt('qbx:max_gangs_per_player', 1)

---@class PlayerData : PlayerEntity
---@field jobs table<string, integer>
Expand Down

0 comments on commit 291553e

Please sign in to comment.