Use v prefix for server config cvars

This commit is contained in:
Vortrex
2023-02-08 17:59:00 -06:00
parent 094387dc41
commit 9004e51928

View File

@@ -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")));
}
}
};