diff options
author | Colin Noga <Tempus@chronometry.ca> | 2012-08-29 13:22:45 -0500 |
---|---|---|
committer | Colin Noga <Tempus@chronometry.ca> | 2012-08-29 13:22:45 -0500 |
commit | 642c99cff7810bc979ade719d4b88e2941fa1461 (patch) | |
tree | 57588855c9b8e8c63868e15ee75ce6796b9b664e /src/koopatlas | |
parent | 8cedd9bfb7d35544c37f15f3f07357e0cc37c173 (diff) | |
download | kamek-642c99cff7810bc979ade719d4b88e2941fa1461.tar.gz kamek-642c99cff7810bc979ade719d4b88e2941fa1461.zip |
Node fix, added a new effect
Diffstat (limited to 'src/koopatlas')
-rw-r--r-- | src/koopatlas/mapdata.cpp | 4 |
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"; } |