fix: include materia in from_str

This commit is contained in:
Anna 2022-06-24 08:22:29 -04:00
parent bb437a335f
commit b0649ce49c
1 changed files with 6 additions and 0 deletions

View File

@ -467,6 +467,12 @@ impl FromStr for World {
"leviathan" => World::Leviathan,
"ultros" => World::Ultros,
"bismarck" => World::Bismarck,
"ravana" => World::Ravana,
"sephirot" => World::Sephirot,
"sophia" => World::Sophia,
"zurvan" => World::Zurvan,
_ => return Err(UnknownVariant("World", s.into()))
};