Skip to content

Commit

Permalink
TMPE version 1.8.15:
Browse files Browse the repository at this point in the history
- Updated for game version 1.6.3-f1
  • Loading branch information
VictorPhilipp committed Jan 27, 2017
1 parent 6046e4b commit 1be0760
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 3 deletions.
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ A work-in-progress modification for **Cities: Skylines** to add additional traff
User manual: http://www.viathinksoft.de/tmpe

# Changelog
1.8.15, 01/27/2017
- Updated for game version 1.6.3-f1

1.8.14, 01/07/2017
- Bugfix: Wait/flow ratio at timed traffic lights is sometimes not correctly calculated
- Bugfix: A deadlock situation can arise at junctions with priority signs such that no vehicle enters the junction
Expand Down
2 changes: 2 additions & 0 deletions TLM/TLM/Custom/AI/CustomAmbulanceAI.cs
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,8 @@ public bool CustomStartPathFind(ushort vehicleID, ref Vehicle vehicleData, Vecto
vehicleData.m_flags |= Vehicle.Flags.WaitingPath;
return true;
}
} else {
PathfindFailure(vehicleID, ref vehicleData);
}
return false;
}
Expand Down
2 changes: 2 additions & 0 deletions TLM/TLM/Custom/AI/CustomFireTruckAI.cs
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,8 @@ public bool CustomStartPathFind(ushort vehicleID, ref Vehicle vehicleData, Vecto
vehicleData.m_flags |= Vehicle.Flags.WaitingPath;
return true;
}
} else {
PathfindFailure(vehicleID, ref vehicleData);
}
return false;
}
Expand Down
6 changes: 3 additions & 3 deletions TLM/TLM/TrafficManagerMod.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@
namespace TrafficManager {
public class TrafficManagerMod : IUserMod {

public static readonly string Version = "1.8.14";
public static readonly string Version = "1.8.15";

public static readonly uint GameVersion = 159768848u;
public static readonly uint GameVersion = 159899920u;
public static readonly uint GameVersionA = 1u;
public static readonly uint GameVersionB = 6u;
public static readonly uint GameVersionC = 2u;
public static readonly uint GameVersionC = 3u;
public static readonly uint GameVersionBuild = 1u;

public string Name => "Traffic Manager: President Edition";
Expand Down

0 comments on commit 1be0760

Please sign in to comment.