Forgot to add fast monsters
This commit is contained in:
@@ -134,6 +134,9 @@ impl RustDoomLauncher {
|
|||||||
if self.respawning_monsters {
|
if self.respawning_monsters {
|
||||||
command.push("-respawn");
|
command.push("-respawn");
|
||||||
}
|
}
|
||||||
|
if self.fast_monsters {
|
||||||
|
command.push("-fast");
|
||||||
|
}
|
||||||
Ok((launcher.path.to_str().unwrap(), command))
|
Ok((launcher.path.to_str().unwrap(), command))
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -194,7 +197,6 @@ impl eframe::App for RustDoomLauncher {
|
|||||||
self.config_file_loaded = true;
|
self.config_file_loaded = true;
|
||||||
}
|
}
|
||||||
egui::containers::panel::CentralPanel::default().show(ctx, |ui| {
|
egui::containers::panel::CentralPanel::default().show(ctx, |ui| {
|
||||||
|
|
||||||
ui.horizontal(|ui| {
|
ui.horizontal(|ui| {
|
||||||
ui.heading("RustDoomLauncher");
|
ui.heading("RustDoomLauncher");
|
||||||
let button = match self.launcher_and_iwad() {
|
let button = match self.launcher_and_iwad() {
|
||||||
|
|||||||
Reference in New Issue
Block a user