mirror of
https://github.com/Steffo99/patched-porobot.git
synced 2024-12-22 17:44:22 +00:00
Somehow, I've managed to forget about bilgewater
This commit is contained in:
parent
5d51c55c9c
commit
ce0774d5dd
1 changed files with 3 additions and 0 deletions
|
@ -20,6 +20,8 @@ pub enum CardRegion {
|
|||
Targon,
|
||||
/// Ionia.
|
||||
Ionia,
|
||||
/// Bilgewater.
|
||||
Bilgewater,
|
||||
/// Shurima.
|
||||
Shurima,
|
||||
/// Piltover & Zaun.
|
||||
|
@ -74,6 +76,7 @@ mod tests {
|
|||
test_deserialization!(deserialize_shadowisles, r#""ShadowIsles""#, CardRegion::ShadowIsles);
|
||||
test_deserialization!(deserialize_targon, r#""Targon""#, CardRegion::Targon);
|
||||
test_deserialization!(deserialize_ionia, r#""Ionia""#, CardRegion::Ionia);
|
||||
test_deserialization!(deserialize_bandlecity, r#""Bilgewater""#, CardRegion::Bilgewater);
|
||||
test_deserialization!(deserialize_shurima, r#""Shurima""#, CardRegion::Shurima);
|
||||
test_deserialization!(deserialize_piltoverzaun, r#""PiltoverZaun""#, CardRegion::PiltoverZaun);
|
||||
test_deserialization!(deserialize_bandlecity, r#""BandleCity""#, CardRegion::BandleCity);
|
||||
|
|
Loading…
Reference in a new issue