feat(Core/Mail): Server mail (#10628)

This commit is contained in:
Kitzunu 2022-04-19 23:43:14 +02:00 committed by GitHub
parent b801274b89
commit 7ecd738674
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
11 changed files with 238 additions and 0 deletions

View file

@ -31,6 +31,7 @@ void AddSC_chat_log(); // location: scripts\World\chat_log.cpp
void AddSC_action_ip_logger(); // location: scripts\World\action_ip_logger.cpp
void AddSC_player_scripts();
void AddSC_npc_stave_of_ancients();
void AddSC_server_mail();
// The name of this function should match:
// void Add${NameOfDirectory}Scripts()
@ -51,4 +52,5 @@ void AddWorldScripts()
AddSC_action_ip_logger(); // location: scripts\World\action_ip_logger.cpp
AddSC_player_scripts();
AddSC_npc_stave_of_ancients();
AddSC_server_mail();
}