mirror of
https://github.com/Creators-of-Create/Create.git
synced 2025-01-22 07:20:03 +01:00
Merge pull request #5826 from IThundxr/mc1.18/fixSignalNPE
fix: Signal Group NPE
This commit is contained in:
commit
bb7e835a8d
2 changed files with 3 additions and 1 deletions
|
@ -107,6 +107,8 @@ public class EdgeData {
|
|||
if (!hasSignalBoundaries())
|
||||
return getEffectiveEdgeGroupId(graph);
|
||||
SignalBoundary firstSignal = next(EdgePointType.SIGNAL, 0);
|
||||
if (firstSignal == null)
|
||||
return null;
|
||||
UUID currentGroup = firstSignal.getGroup(edge.node1);
|
||||
|
||||
for (TrackEdgePoint trackEdgePoint : getPoints()) {
|
||||
|
|
|
@ -505,7 +505,7 @@ public class TrackGraph {
|
|||
|
||||
SignalEdgeGroup group = Create.RAILWAYS.signalEdgeGroups.get(groupId);
|
||||
SignalEdgeGroup otherGroup = Create.RAILWAYS.signalEdgeGroups.get(otherGroupId);
|
||||
if (group == null || otherGroup == null)
|
||||
if (group == null || otherGroup == null || groupId == null || otherGroupId == null)
|
||||
continue;
|
||||
|
||||
intersection.groupId = groupId;
|
||||
|
|
Loading…
Add table
Reference in a new issue