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

Commented out unnecessary logging for release

This commit is contained in:
Rich Dunne 2020-10-15 14:52:50 -06:00
parent 8bbb30e072
commit 7ee307f8e6
6 changed files with 23 additions and 22 deletions

View file

@ -79,7 +79,7 @@ namespace SceneManager
Blip.Color = Color.Green;
foreach(CollectedVehicle cv in VehicleCollector.collectedVehicles.Where(cv => cv.Vehicle && cv.Path == Path && cv.CurrentWaypoint == this && cv.StoppedAtWaypoint))
{
Logger.Log($"Setting StoppedAtWaypoint to false for {cv.Vehicle.Model.Name}");
// Logger.Log($"Setting StoppedAtWaypoint to false for {cv.Vehicle.Model.Name}");
cv.Dismiss(DismissOption.FromWaypoint);
}
}