From 1657fe80f489ccbd38584249fdc1e85a35262491 Mon Sep 17 00:00:00 2001 From: DeltaF1 Date: Fri, 13 Sep 2024 12:44:43 -0400 Subject: [PATCH] Replace oui/non with yes/no (#2760) --- src/game/Commands/DebugCommands.cpp | 4 ++-- src/game/Commands/ServerCommands.cpp | 4 ++-- .../burning_steppes/blackwing_lair/boss_razorgore.cpp | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/game/Commands/DebugCommands.cpp b/src/game/Commands/DebugCommands.cpp index 87dbfd5c57b..8552c827e91 100644 --- a/src/game/Commands/DebugCommands.cpp +++ b/src/game/Commands/DebugCommands.cpp @@ -142,8 +142,8 @@ bool ChatHandler::HandleSpellInfosCommand(char *args) PSendSysMessage("MaxTargetLevel%u:DmgClass%u:rangeIndex%u", pSpell->MaxTargetLevel, pSpell->DmgClass, pSpell->rangeIndex); PSendSysMessage("procChance%u:procFlags0x%x:procCharges%u", pSpell->procChance, pSpell->procFlags, pSpell->procCharges); PSendSysMessage("InterruptFlags0x%x:AuraInterruptFlags0x%x:PreventionType%x:spellLevel%u", pSpell->InterruptFlags, pSpell->AuraInterruptFlags, pSpell->PreventionType, pSpell->spellLevel); - PSendSysMessage("SpellSpecific%u:Binaire%s:spellPriority%u:Positive%u", Spells::GetSpellSpecific(pSpell->Id), pSpell->IsBinary() ? "OUI" : "NON", pSpell->spellPriority, pSpell->IsPositiveSpell()); - PSendSysMessage("RecoveryTime%u:CategoryRecoveryTime%u:PvEHeartBeat%s", pSpell->RecoveryTime, pSpell->CategoryRecoveryTime, pSpell->IsPvEHeartBeat() ? "OUI" : "NON"); + PSendSysMessage("SpellSpecific%u:Binaire%s:spellPriority%u:Positive%u", Spells::GetSpellSpecific(pSpell->Id), pSpell->IsBinary() ? "YES" : "NO", pSpell->spellPriority, pSpell->IsPositiveSpell()); + PSendSysMessage("RecoveryTime%u:CategoryRecoveryTime%u:PvEHeartBeat%s", pSpell->RecoveryTime, pSpell->CategoryRecoveryTime, pSpell->IsPvEHeartBeat() ? "YES" : "NO"); return true; } diff --git a/src/game/Commands/ServerCommands.cpp b/src/game/Commands/ServerCommands.cpp index e3aa4732630..b41944c4dff 100644 --- a/src/game/Commands/ServerCommands.cpp +++ b/src/game/Commands/ServerCommands.cpp @@ -274,8 +274,8 @@ bool ChatHandler::HandleWorldTestCommand(char *args) return false; } PSendSysMessage("My worldmask is 0x%x. My target worldmask is 0x%x.", me->GetWorldMask(), target->GetWorldMask()); - PSendSysMessage("I see the target ? %s", me->CanSeeInWorld(target) ? "oui" : "non"); - PSendSysMessage("My target sees me ? %s", target->CanSeeInWorld(me) ? "oui" : "non"); + PSendSysMessage("I see the target ? %s", me->CanSeeInWorld(target) ? "yes" : "no"); + PSendSysMessage("My target sees me ? %s", target->CanSeeInWorld(me) ? "yes" : "no"); return true; } diff --git a/src/scripts/eastern_kingdoms/burning_steppes/blackwing_lair/boss_razorgore.cpp b/src/scripts/eastern_kingdoms/burning_steppes/blackwing_lair/boss_razorgore.cpp index 618ef9d86ca..4bb14a89aa7 100644 --- a/src/scripts/eastern_kingdoms/burning_steppes/blackwing_lair/boss_razorgore.cpp +++ b/src/scripts/eastern_kingdoms/burning_steppes/blackwing_lair/boss_razorgore.cpp @@ -359,7 +359,7 @@ struct boss_razorgoreAI : public ScriptedAI void GetAIInformation(ChatHandler& handler) override { - handler.PSendSysMessage("* CombatMovement : %s", IsCombatMovementEnabled() ? "OUI" : "NON"); + handler.PSendSysMessage("* CombatMovement : %s", IsCombatMovementEnabled() ? "YES" : "NO"); } };