Add GC V3 EXP dispatcher

This commit is contained in:
2026-05-21 01:50:06 -04:00
parent 07d04a761e
commit b9c9b877d2
18 changed files with 6199 additions and 10 deletions
+5
View File
@@ -883,6 +883,11 @@ void ServerState::load_config_early() {
throw runtime_error("PsoPeepsDCV2EXPMultiplier must be 5 or 10");
}
this->psopeeps_gc_exp_multiplier = this->config_json->get_int("PsoPeepsGCEXPMultiplier", 5);
if ((this->psopeeps_gc_exp_multiplier != 5) && (this->psopeeps_gc_exp_multiplier != 10)) {
throw runtime_error("PsoPeepsGCEXPMultiplier must be 5 or 10");
}
this->ip_stack_debug = this->config_json->get_bool("IPStackDebug", false);
this->allow_unregistered_users = this->config_json->get_bool("AllowUnregisteredUsers", false);
this->allow_pc_nte = this->config_json->get_bool("AllowPCNTE", false);