diff --git a/Export/Languages/Inform7Exporter.cs b/Export/Languages/Inform7Exporter.cs index 7f9c66db..c4c28cd1 100644 --- a/Export/Languages/Inform7Exporter.cs +++ b/Export/Languages/Inform7Exporter.cs @@ -77,8 +77,8 @@ protected override void ExportContent(TextWriter writer) { writer.WriteLine(); // export each location foreach (var location in LocationsInExportOrder) { - if (location.Room.Region != region.ExportName) continue; - anyConditionalExits |= printThisLoc(writer, location); + if ((location.Room.Region == region.Region.RegionName) ||(location.Room.Region == region.ExportName)) + anyConditionalExits |= printThisLoc(writer, location); } }