From 061215ad231422402d79f5d2382b808060f4f8c4 Mon Sep 17 00:00:00 2001 From: Joshua Goins Date: Mon, 28 Apr 2025 16:38:30 -0400 Subject: [PATCH] Don't crash when parsing Au Ra --- src/value.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/value.rs b/src/value.rs index 9207436..d068d42 100644 --- a/src/value.rs +++ b/src/value.rs @@ -181,7 +181,7 @@ impl TryFrom<&str> for RaceValue { "Lalafell" => 3, "Miqo'te" => 4, "Roegadyn" => 5, - "AuRa" => 6, + "Au Ra" => 6, "Hrothgar" => 7, "Viera" => 8, _ => return Err(ArchiveError::ParsingError),