From b782a76c7d5b8e9916103958bec763fd7e5efc80 Mon Sep 17 00:00:00 2001 From: Kitzunu <24550914+Kitzunu@users.noreply.github.com> Date: Fri, 6 May 2022 21:58:44 +0200 Subject: chore: Lol --- docs/cpp-code-standards.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'docs/cpp-code-standards.md') diff --git a/docs/cpp-code-standards.md b/docs/cpp-code-standards.md index 2862d87..959f9b8 100644 --- a/docs/cpp-code-standards.md +++ b/docs/cpp-code-standards.md @@ -148,7 +148,7 @@ All constants that we store have a standardized prefix. | SAY_ | [creature_text.GroupID](creature_text#groupid) | | EMOTE_ | [creature_text.GroupID](creature_text#groupid) Different prefix from SAY_ to show that this is an emote. | | MODEL_ | Creature model, DisplayID | -| H_XX | Heroic mode prefix (goes before the other prefix) XX is max man amount from mode. (OBSOLETE AS OF PATCH 3.2 WITH SpellDifficulty.dbc) | +| XX_G | Heroic mode prefix (goes after the other prefix) XX is max man amount from mode. (OBSOLETE AS OF PATCH 3.2 WITH SpellDifficulty.dbc) | | RAID_XX | Raid mode prefix (goes before the other prefix) XX is max man amount from mode. (OBSOLETE AS OF PATCH 3.2 WITH SpellDifficulty.dbc) | | EVENT_ | Event/Encounter identifier for instances | | DATA_ | Identifiers in instance used for GUIDs/data not being event/encounter | @@ -158,7 +158,7 @@ Correct: ``` SPELL_ENRAGE -H_SPELL_ENRAGE +SPELL_ENRAGE_H EVENT_ILLIDAN DATA_ILLIDAN ACHIEVE_MAKE_IT_COUNT -- cgit