diff --git a/src/server/game/Mails/Mail.cpp b/src/server/game/Mails/Mail.cpp index ea5a1f693..0ea6008a2 100644 --- a/src/server/game/Mails/Mail.cpp +++ b/src/server/game/Mails/Mail.cpp @@ -103,6 +103,13 @@ void MailDraft::prepareItems(Player* receiver, CharacterDatabaseTransaction tran m_mailTemplateItemsNeed = false; + // The mail sent after turning in the quest The Wrath of Neptulon contains 100g + // Only quest in the game up to BFA which sends raw gold through mail. So would just be overkill to introduce a new column in the database. + if (m_mailTemplateId == 123) + { + m_money = 1000000; + } + Loot mailLoot; // can be empty