Skip to content

Commit

Permalink
Merge pull request #111 from AlexBond2/terminal
Browse files Browse the repository at this point in the history
Fix Boss marker for Dimensions Collide
  • Loading branch information
Crypto137 authored Jan 15, 2025
2 parents 880221d + da72805 commit db41321
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/MHServerEmu.Games/Populations/SpawnMarkerRegistry.cs
Original file line number Diff line number Diff line change
Expand Up @@ -176,6 +176,10 @@ private void AddSpawnTypeLocation(PrototypeId markerRef, Vector3 position, Orien
cellMap[markerRef] = cellList;
}
cellList.Add(spot);

// HardFix for TimesSquare_DrStrange_X5Y2
if (cell.PrototypeDataRef == (PrototypeId)11803282576147423507 && id == 5)
spot.State = MarkerState.Reserved;
}

public void RemoveCell(Cell cell)
Expand Down

0 comments on commit db41321

Please sign in to comment.