Core/Spells: added a missing breakpoint that was granting Death's Embrace more bonus values than it should get

This commit is contained in:
Ovahlord
2019-08-13 17:53:34 +02:00
parent dc25b61983
commit 680d82db4e
2 changed files with 3 additions and 0 deletions

View File

@@ -57,6 +57,7 @@ void AddSC_tele_commandscript();
void AddSC_ticket_commandscript();
void AddSC_titles_commandscript();
void AddSC_wp_commandscript();
void AddSC_dev_commandscript();
// The name of this function should match:
// void Add${NameOfDirectory}Scripts()
@@ -103,4 +104,5 @@ void AddCommandsScripts()
AddSC_ticket_commandscript();
AddSC_titles_commandscript();
AddSC_wp_commandscript();
AddSC_dev_commandscript();
}