feat(hs): add red/blue base exit gates on Heykel Savasi map

This commit is contained in:
Acentech Dev
2026-07-20 22:38:20 +03:00
parent 5a354fb419
commit 732196f623

View File

@@ -5,6 +5,7 @@
namespace MUnique.OpenMU.Persistence.Initialization.VersionSeasonSix;
using MUnique.OpenMU.DataModel.Configuration;
using MUnique.OpenMU.Persistence.Initialization.VersionSeasonSix.Maps;
/// <summary>
/// Gates initialization.
@@ -440,6 +441,10 @@ public class Gates : InitializerBase
targetGates.Add(344, this.CreateExitGate(maps[81], 162, 16, 163, 17, 5));
targetGates.Add(341, this.CreateExitGate(maps[81], 162, 12, 164, 14, 5));
// Heykel Savasi (event map, base spawn gates)
targetGates.Add(600, this.CreateExitGate(maps[HeykelSavasiMap.Number], 20, 20, 24, 24, 3, true)); // RedBase
targetGates.Add(601, this.CreateExitGate(maps[HeykelSavasiMap.Number], 220, 220, 224, 224, 7, true)); // BlueBase
return targetGates;
}