1
0
mirror of https://git.ngram.ca/OpenJam/rc-servers synced 2026-08-23 23:08:52 +00:00

Get capture points workins #30 (mars 1 only)

This commit is contained in:
NG (Graham)
2025-07-26 21:57:46 -04:00
parent c6bd9e110d
commit a0d6974a31
10 changed files with 451 additions and 101 deletions

View File

@@ -45,11 +45,12 @@ impl GameMatches {
}
match game_info.mode {
oj_rc_core::data::game_mode::GameMode::SuddenDeath => {
let inner = super::modes::EliminationLogic::new(&self.mode_configs.elimination, &map_config);
let engine = super::GenericGamemodeEngine::new(
game_info,
map_config,
players,
super::modes::EliminationLogic::new(&self.mode_configs.elimination)
inner,
);
Ok(engine.spawn())
}