From 40213873872636eed5b47ef0df150797e9dc9f50 Mon Sep 17 00:00:00 2001 From: Bobblybook Date: Sun, 6 Oct 2024 04:31:37 +1100 Subject: [PATCH] Typo --- src/strategy/dungeons/wotlk/nexus/NexusActions.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/strategy/dungeons/wotlk/nexus/NexusActions.cpp b/src/strategy/dungeons/wotlk/nexus/NexusActions.cpp index 543fadba..8c0b1311 100644 --- a/src/strategy/dungeons/wotlk/nexus/NexusActions.cpp +++ b/src/strategy/dungeons/wotlk/nexus/NexusActions.cpp @@ -167,7 +167,7 @@ bool RearFlankPositionAction::isUseful() // Total 180 degrees (whole front half) bool inFront = boss->HasInArc(2.f * DRAGON_MELEE_MIN_ANGLE, bot); // Rear check does not need to double this angle as the logic is inverted - // and we are subtracing from 2pi. + // and we are subtracting from 2pi. bool inBack = !boss->HasInArc((2.f * M_PI) - DRAGON_MELEE_MAX_ANGLE, bot); return inFront || inBack;