Use new prefix for server cvars

This commit is contained in:
Vortrex
2022-06-27 16:41:06 -05:00
parent b86d2c7bcb
commit ab7c73d7da

View File

@@ -136,8 +136,8 @@ class ServerConfigData {
passiveIncome: toFloat(dbAssoc["svr_passive_income"]), passiveIncome: toFloat(dbAssoc["svr_passive_income"]),
} }
this.devServer = intToBool(toInteger(server.getCVar("vrr_devserver"))); this.devServer = intToBool(toInteger(server.getCVar("agrp_devserver")));
this.testerOnly = intToBool(toInteger(server.getCVar("vrr_testeronly"))); this.testerOnly = intToBool(toInteger(server.getCVar("agrp_testeronly")));
} }
} }
}; };