fix(Scripts/Quest): reward money amount of Apprentice Angler (#6431)

Fixed #5184.
This commit is contained in:
UltraNix 2021-06-27 01:43:55 +02:00 committed by GitHub
parent c167b17b2a
commit 0c22cae717
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 64 additions and 0 deletions

View file

@ -18,6 +18,7 @@ void AddSC_achievement_scripts();
void AddSC_chat_log(); // location: scripts\World\chat_log.cpp
void AddSC_character_creation();
void AddSC_action_ip_logger(); // location: scripts\World\action_ip_logger.cpp
void AddSC_player_scripts();
// The name of this function should match:
// void Add${NameOfDirectory}Scripts()
@ -37,4 +38,5 @@ void AddWorldScripts()
AddSC_chat_log(); // location: scripts\World\chat_log.cpp
AddSC_character_creation();
AddSC_action_ip_logger(); // location: scripts\World\action_ip_logger.cpp
AddSC_player_scripts();
}