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

@@ -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;
}