diff --git a/scripts/server/config.js b/scripts/server/config.js index bc016af3..a9745984 100644 --- a/scripts/server/config.js +++ b/scripts/server/config.js @@ -140,8 +140,8 @@ class ServerConfigData { passiveIncome: toFloat(dbAssoc["svr_passive_income"]), } - this.devServer = intToBool(toInteger(server.getCVar("agrp_devserver"))); - this.testerOnly = intToBool(toInteger(server.getCVar("agrp_testeronly"))); + this.devServer = intToBool(toInteger(server.getCVar("v_devserver"))); + this.testerOnly = intToBool(toInteger(server.getCVar("v_testeronly"))); } } };