Core/Spells: Correct swapped TARGET_UNIT_NEARBY_ALLY and TARGET_UNIT_NEARBY_PARTY (#25837)

* Update SharedDefines.h

* Update SpellInfo.cpp
This commit is contained in:
xvwyh
2021-01-14 11:41:03 +02:00
committed by GitHub
parent cf5f360299
commit 7c6d92012a
2 changed files with 4 additions and 4 deletions

View File

@@ -1433,8 +1433,8 @@ enum Targets
{
TARGET_UNIT_CASTER = 1,
TARGET_UNIT_NEARBY_ENEMY = 2,
TARGET_UNIT_NEARBY_PARTY = 3,
TARGET_UNIT_NEARBY_ALLY = 4,
TARGET_UNIT_NEARBY_ALLY = 3,
TARGET_UNIT_NEARBY_PARTY = 4,
TARGET_UNIT_PET = 5,
TARGET_UNIT_TARGET_ENEMY = 6,
TARGET_UNIT_SRC_AREA_ENTRY = 7,