Browse Source

Remove target and origin only

DricomDragon 5 years ago
parent
commit
e93f030f35
1 changed files with 3 additions and 4 deletions
  1. 3 4
      main.cc

+ 3 - 4
main.cc

@@ -215,12 +215,11 @@ class World
 			} while (!targetIsReached && !open.empty());
 
 			// Remove origin and target
-			if (!discovered.empty()) {
+			if (!discovered.empty() && discovered.front() == origin)
 				discovered.pop_front();
 
-				if (!discovered.empty())
-					discovered.pop_back();
-			}
+			if (!discovered.empty() && discovered.back() == target)
+				discovered.pop_back();
 
 			// Build path
 			if (targetIsReached) {