diff options
Diffstat (limited to 'tools/validator')
-rw-r--r-- | tools/validator/validator.cpp | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/tools/validator/validator.cpp b/tools/validator/validator.cpp index f5524c3..9c66e09 100644 --- a/tools/validator/validator.cpp +++ b/tools/validator/validator.cpp | |||
@@ -198,6 +198,15 @@ class Validator { | |||
198 | std::cout << "Door " << door_identifier.ShortDebugString() | 198 | std::cout << "Door " << door_identifier.ShortDebugString() |
199 | << " needs an explicit location name." << std::endl; | 199 | << " needs an explicit location name." << std::endl; |
200 | } | 200 | } |
201 | |||
202 | if (h_door.double_letters() && | ||
203 | (h_door.type() == DoorType::STANDARD || | ||
204 | h_door.type() == DoorType::LOCATION_ONLY || | ||
205 | h_door.type() == DoorType::GRAVESTONE)) { | ||
206 | std::cout << "Door " << door_identifier.ShortDebugString() | ||
207 | << " is a location that depends on double_letters." | ||
208 | << std::endl; | ||
209 | } | ||
201 | } | 210 | } |
202 | } | 211 | } |
203 | 212 | ||