Add inflation multiplier to server config class

This commit is contained in:
Vortrex
2021-01-19 04:41:34 -06:00
parent cbfb6180c6
commit 874166184d

View File

@@ -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 {