More checks for town. Probably not exhaustive.
This commit is contained in:
parent
97bc3b3190
commit
1bc4cc636f
1 changed files with 4 additions and 1 deletions
|
|
@ -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")) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue