Forgot to add fast monsters

This commit is contained in:
2023-06-12 22:51:01 +01:00
parent 665470fec0
commit 075f07c971

View File

@@ -134,6 +134,9 @@ impl RustDoomLauncher {
if self.respawning_monsters {
command.push("-respawn");
}
if self.fast_monsters {
command.push("-fast");
}
Ok((launcher.path.to_str().unwrap(), command))
}
@@ -194,7 +197,6 @@ impl eframe::App for RustDoomLauncher {
self.config_file_loaded = true;
}
egui::containers::panel::CentralPanel::default().show(ctx, |ui| {
ui.horizontal(|ui| {
ui.heading("RustDoomLauncher");
let button = match self.launcher_and_iwad() {