diff --git a/Export/Languages/Inform7Exporter.cs b/Export/Languages/Inform7Exporter.cs index cb10f493..bef93677 100644 --- a/Export/Languages/Inform7Exporter.cs +++ b/Export/Languages/Inform7Exporter.cs @@ -369,7 +369,7 @@ private static string toInform7UnderstandWords(string text) { private static string whatItIs(Thing thing) { var whatString = string.Empty; if (thing.IsPerson) { - whatString += $"{thing.ExportName} is a " + Enum.GetName(typeof(Thing.ThingGender), thing.Gender.ToString().ToLower()) + " person"; + whatString += $"{thing.ExportName} is a " + Enum.GetName(typeof(Thing.ThingGender), thing.Gender) + " person"; } else if (thing.PartOf) { whatString += " is ";