fix label misspelling in tiletypes

develop
myk002 2021-05-04 12:35:22 -07:00
parent b1b2087271
commit 7848771b1a
No known key found for this signature in database
GPG Key ID: 8A39CA0FA0C16E78
1 changed files with 1 additions and 1 deletions

@ -316,7 +316,7 @@ std::ostream &operator<<(std::ostream &stream, const TileType &paint)
needSpace = false;
}
stream << (paint.dig ? "DESIGNATED" : "UNDESIGATNED");
stream << (paint.dig ? "DESIGNATED" : "UNDESIGNATED");
used = true;
needSpace = true;
}