More checks for town. Probably not exhaustive.

This commit is contained in:
MetricExpansion 2020-11-05 23:06:35 -08:00
parent 97bc3b3190
commit 1bc4cc636f

View file

@ -604,7 +604,10 @@
if (keywords.empty()) {
type_str = "worldcell";
type = LocationType::World;
} else if (keywords.count("LocTypeHabitation")) {
} else if (
keywords.count("LocTypeHabitation") ||
keywords.count("LocTypeDwelling") ||
keywords.count("TGBusiness")) {
type_str = "town";
type = LocationType::Town;
} else if (keywords.count("LocTypeDungeon")) {