prison lfg

This commit is contained in:
Stachelbeere1248 2024-06-21 07:43:49 +02:00
parent b07e914b3a
commit 6b24d5ffe5
Signed by: Stachelbeere1248
SSH key fingerprint: SHA256:IozEKdw2dB8TZxkpPdMxcWSoWTIMwoLaCcZJ1AJnY2o
2 changed files with 4 additions and 3 deletions

1
.gitignore vendored
View file

@ -1,2 +1 @@
/target /target
/Secrets.toml

View file

@ -17,6 +17,8 @@ pub enum Map {
BadBlood, BadBlood,
#[name = "Alien Arcadium"] #[name = "Alien Arcadium"]
AlienArcadium, AlienArcadium,
#[name = "Prison"]
Prison,
} }
#[derive(Debug, poise::ChoiceParameter)] #[derive(Debug, poise::ChoiceParameter)]
pub enum Mode { pub enum Mode {
@ -85,6 +87,7 @@ pub(crate) async fn lfg(
DeadEnd => 1005837123921915914, DeadEnd => 1005837123921915914,
BadBlood => 1140190470698438666, BadBlood => 1140190470698438666,
AlienArcadium => 1105917281898336356, AlienArcadium => 1105917281898336356,
Prison => 1253440747454333009,
}, },
Speedrun => 1005836989595144243, Speedrun => 1005836989595144243,
Challenge => 1005836864680361994, Challenge => 1005836864680361994,
@ -92,8 +95,7 @@ pub(crate) async fn lfg(
//Tournament => 1210508966036242445, //Tournament => 1210508966036242445,
}; };
let difficulty: Difficulty = match map { let difficulty: Difficulty = match map {
DeadEnd => difficulty.unwrap_or(Normal), DeadEnd | BadBlood | Prison => difficulty.unwrap_or(Normal),
BadBlood => difficulty.unwrap_or(Normal),
AlienArcadium => Normal, AlienArcadium => Normal,
}; };