1
Fork 0
mirror of https://github.com/thegeneralist01/Scene-Manager-DevRepo synced 2026-01-11 15:40:29 +01:00

Updated Paths property due to data structure change

This commit is contained in:
Rich Dunne 2021-05-15 09:43:45 -06:00
parent b02f227844
commit ed48504d03

View file

@ -172,7 +172,7 @@ namespace SceneManager.Menus
if (selectedItem == RemoveWaypoint) if (selectedItem == RemoveWaypoint)
{ {
PathManager.RemoveEditWaypoint(currentPath); PathManager.RemoveEditWaypoint(currentPath);
if(PathManager.Paths.Count < 1) if(PathManager.Paths.Length < 1)
{ {
return; return;
} }