diff options
Diffstat (limited to 'src/categories.rs')
-rw-r--r-- | src/categories.rs | 15 |
1 files changed, 13 insertions, 2 deletions
diff --git a/src/categories.rs b/src/categories.rs index cf4c3de..20d540d 100644 --- a/src/categories.rs +++ b/src/categories.rs @@ -11,13 +11,20 @@ impl Categorizable for Log { Encounter::ValeGuardian | Encounter::Gorseval | Encounter::Sabetha => { "Wing 1 (Spirit Vale)" } - Encounter::Slothasor | Encounter::Matthias => "Wing 2 (Salvation Pass)", + Encounter::Slothasor | Encounter::BanditTrio | Encounter::Matthias => { + "Wing 2 (Salvation Pass)" + } Encounter::KeepConstruct | Encounter::Xera => "Wing 3 (Stronghold of the Faithful)", Encounter::Cairn | Encounter::MursaatOverseer | Encounter::Samarog | Encounter::Deimos => "Wing 4 (Bastion of the Penitent)", - Encounter::SoullessHorror | Encounter::VoiceInTheVoid => "Wing 5 (Hall of Chains)", + Encounter::SoullessHorror + | Encounter::RiverOfSouls + | Encounter::BrokenKing + | Encounter::EaterOfSouls + | Encounter::StatueOfDarkness + | Encounter::VoiceInTheVoid => "Wing 5 (Hall of Chains)", Encounter::ConjuredAmalgamate | Encounter::TwinLargos | Encounter::Qadim => { "Wing 6 (Mythwright Gambit)" } @@ -37,6 +44,10 @@ impl Categorizable for Log { | Encounter::Boneskinner | Encounter::WhisperOfJormag => "Strike Mission", + Encounter::StandardKittyGolem + | Encounter::MediumKittyGolem + | Encounter::LargeKittyGolem => "Special Forces Training Area", + _ => "Unknown", } } else { |