diff options
author | Daniel Schadt <kingdread@gmx.de> | 2020-09-23 15:22:55 +0200 |
---|---|---|
committer | Daniel Schadt <kingdread@gmx.de> | 2020-09-23 15:23:55 +0200 |
commit | 39972d54be41bfc7b8b7f38b1f5a4d60e2453da5 (patch) | |
tree | 5ef048c306eca6a67005290859a29699d35978b6 /src/analyzers/raids/mod.rs | |
parent | 3b79ad8fa9b4a8c9c535b417129e3f70769074e0 (diff) | |
download | evtclib-39972d54be41bfc7b8b7f38b1f5a4d60e2453da5.tar.gz evtclib-39972d54be41bfc7b8b7f38b1f5a4d60e2453da5.tar.bz2 evtclib-39972d54be41bfc7b8b7f38b1f5a4d60e2453da5.zip |
rename Boss to Encounter
This is the first step in differentiating between Encounters and Bosses.
It sounds a bit weird at first, but there are some events without any
bosses (like the River of Souls), and some events which have multiple
bosses (like Twin Largos or the kodan strike mission). If we want to
support this better, without relying on extra IDs, special casing and
constants (like NIKARE_ID), we should differentiate between Encounters
and Bosses.
Diffstat (limited to 'src/analyzers/raids/mod.rs')
-rw-r--r-- | src/analyzers/raids/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/analyzers/raids/mod.rs b/src/analyzers/raids/mod.rs index bb3824b..a0602b0 100644 --- a/src/analyzers/raids/mod.rs +++ b/src/analyzers/raids/mod.rs @@ -19,7 +19,7 @@ mod w5; pub use w5::{Dhuum, SoullessHorror}; mod w6; -pub use w6::{ConjuredAmalgamate, LargosTwins, Qadim}; +pub use w6::{ConjuredAmalgamate, TwinLargos, Qadim}; mod w7; pub use w7::{CardinalAdina, CardinalSabir, QadimThePeerless}; |