summaryrefslogtreecommitdiff
path: root/src/koopatlas/mapdata.cpp
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/koopatlas/mapdata.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/koopatlas/mapdata.cpp b/src/koopatlas/mapdata.cpp
index ef0a747..1857b18 100644
--- a/src/koopatlas/mapdata.cpp
+++ b/src/koopatlas/mapdata.cpp
@@ -77,14 +77,14 @@ void dKPNode_s::setupNodeExtra() {
// Is it complete?
else if ((exitComplete) || (secretComplete)) {
// Does it have two exits?
- if ((this->hasSecret) && (!exitComplete) && (!secretComplete))
+ if ((this->hasSecret) && (exitComplete) && (secretComplete))
colour = "g3d/blue.brres";
// Does it have one exit?
else if ((!this->hasSecret) && (exitComplete))
colour = "g3d/blue.brres";
- // All exits are complete
+ // Not all exits are complete
else
colour = "g3d/purple.brres";
}