public void GoToZone(int zoneId) { Zone g = Zone.Get(zoneId); if (g == null) { return; } wantedPath = AllWaysGoToRome.GetPath(g, currentPosition); }
public void AddGoToZone(int zoneId) {//Si aucun définit, ajout du chemin simplement if (wantedPath.Count == 0) { GoToZone(zoneId); return; } Zone from = GetMissionDestination(); Zone g = Zone.Get(zoneId); if (g == null) { return; } wantedPath = AllWaysGoToRome.GetPath(g, from); }