Skip to content

Commit

Permalink
Merge pull request #194 from kaenganxt/fixZones
Browse files Browse the repository at this point in the history
Fix zone sync
  • Loading branch information
DominicMaas committed Aug 18, 2020
2 parents 2428e24 + 7fff54e commit 70f9a42
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/Injections/ArrayHandler.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,10 @@ public static class ArrayHandler
private static readonly NLog.Logger _logger = NLog.LogManager.GetCurrentClassLogger();

// All the types for Array16<T> and Array32<T> we currently need to track
private static readonly Type[] _array16Types = { typeof(Building), typeof(NetNode), typeof(NetSegment), typeof(PropInstance), typeof(TransportLine) };
private static readonly Type[] _array16Types = {
typeof(Building), typeof(NetNode), typeof(NetSegment),
typeof(PropInstance), typeof(TransportLine), typeof(ZoneBlock)
};

private static readonly Type[] _array32Types = { typeof(TreeInstance) };

Expand Down

0 comments on commit 70f9a42

Please sign in to comment.