From 874166184d55941a6de1f2c343a97df43a97a11a Mon Sep 17 00:00:00 2001 From: Vortrex <3858226+VortrexFTW@users.noreply.github.com> Date: Tue, 19 Jan 2021 04:41:34 -0600 Subject: [PATCH] Add inflation multiplier to server config class --- scripts/server/class.js | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/scripts/server/class.js b/scripts/server/class.js index 2c60e277..15bcf358 100644 --- a/scripts/server/class.js +++ b/scripts/server/class.js @@ -44,6 +44,7 @@ function initClassTable() { this.useGUI = true; this.guiColour = [200, 200, 200]; this.showLogo = true; + this.inflationMultiplier = 1; this.antiCheat = { enabled: false, @@ -141,6 +142,12 @@ function initClassTable() { this.alcoholLevel = 0; this.pedState = AG_PEDSTATE_NONE; + + this.promptType = AG_PROMPT_NONE; + + this.businessOrderAmount = 0; + this.businessOrderBusiness = -1; + this.businessOrderItem = -1; } }, accountData: class {