chore(hs): rename event display name 'Heykel Savasi' -> 'TvT Event' (strings only)

Display strings/messages/designations changed everywhere (Name, entrance
messages, NPC designation, HUD title). Code identifiers/namespaces/commands
unchanged. DB rows updated separately.
This commit is contained in:
Acentech Dev
2026-07-21 13:01:36 +03:00
parent 7312b0e20d
commit d41d46f24f
9 changed files with 23 additions and 23 deletions

View File

@@ -12,12 +12,12 @@ using MUnique.OpenMU.PlugIns;
/// <summary>
/// A chat command plugin which allows a game master to join a team of the currently open
/// Heykel Savasi (statue war) event without using the client team-select panel.
/// TvT Event (statue war) event without using the client team-select panel.
/// </summary>
/// <remarks>
/// This is a GM testing aid which substitutes for the client team-select panel (which is
/// implemented in a separate phase for the PC and mobile clients). It allows the whole server
/// side flow of the Heykel Savasi event to be tested end-to-end before the client UI exists.
/// side flow of the TvT Event event to be tested end-to-end before the client UI exists.
/// </remarks>
[Guid("AFCA36C1-B0A0-4D98-BBD6-2352FD18CCA8")]
[PlugIn]
@@ -61,7 +61,7 @@ public class HeykelSavasiTeamTestChatCommandPlugIn : IChatCommandPlugIn
: null;
if (context is null)
{
await player.ShowBlueMessageAsync("Heykel Savasi kayit acik degil.").ConfigureAwait(false);
await player.ShowBlueMessageAsync("TvT Event kayit acik degil.").ConfigureAwait(false);
return;
}

View File

@@ -13,7 +13,7 @@ using MUnique.OpenMU.Interfaces;
using MUnique.OpenMU.PlugIns;
/// <summary>
/// Handles talking to the Heykel Savasi (statue war) NPC (number 560): opens the team-select
/// Handles talking to the TvT Event (statue war) NPC (number 560): opens the team-select
/// panel while the event's registration is open.
/// </summary>
[Guid("80E3B326-474F-45AC-9FA4-3464801AE079")]
@@ -21,7 +21,7 @@ using MUnique.OpenMU.PlugIns;
public class HeykelSavasiNpcPlugin : IPlayerTalkToNpcPlugIn
{
/// <summary>
/// Gets the NPC number of the Heykel Savasi event NPC.
/// Gets the NPC number of the TvT Event event NPC.
/// </summary>
public static short NpcNumber => 560;
@@ -42,7 +42,7 @@ public class HeykelSavasiNpcPlugin : IPlayerTalkToNpcPlugIn
if (context is null)
{
await player.InvokeViewPlugInAsync<IShowMessagePlugIn>(p =>
p.ShowMessageAsync("Heykel Savasi su an acik degil.", MessageType.BlueNormal)).ConfigureAwait(false);
p.ShowMessageAsync("TvT Event su an acik degil.", MessageType.BlueNormal)).ConfigureAwait(false);
return;
}

View File

@@ -19,5 +19,5 @@ public class HeykelSavasiGameServerState : PeriodicTaskGameServerState
}
/// <inheritdoc />
public override string Description => "Heykel Savasi";
public override string Description => "TvT Event";
}

View File

@@ -16,8 +16,8 @@ public class HeykelSavasiStartConfiguration : MiniGameStartConfiguration
new()
{
PreStartMessageDelay = TimeSpan.Zero,
EntranceOpenedMessage = "Heykel Savasi entrance is open and closes in {0} minute(s).",
EntranceClosedMessage = "Heykel Savasi entrance closed.",
EntranceOpenedMessage = "TvT Event entrance is open and closes in {0} minute(s).",
EntranceClosedMessage = "TvT Event entrance closed.",
TaskDuration = TimeSpan.FromMinutes(20),
Timetable = new List<TimeOnly>
{

View File

@@ -12,7 +12,7 @@ using MUnique.OpenMU.PlugIns;
/// This plugin enables the start of the heykel savasi event.
/// </summary>
[PlugIn]
[Display(Name = nameof(HeykelSavasiStartPlugIn), Description = "Heykel Savasi event")]
[Display(Name = nameof(HeykelSavasiStartPlugIn), Description = "TvT Event")]
[Guid("2C6E1B4A-7F3D-4E9A-9B1C-3A6D2F8E5C7B")]
public sealed class HeykelSavasiStartPlugIn : MiniGameStartBasePlugIn<HeykelSavasiStartConfiguration, HeykelSavasiGameServerState>
{