feat(Core/CommandScript): New GM command "player learn" (#2487)

This commit is contained in:
Stoabrogga
2019-12-20 09:12:27 +01:00
committed by GitHub
parent ae810491e7
commit 4e8c3fd344
7 changed files with 214 additions and 74 deletions

View File

@@ -62,6 +62,7 @@ void AddSC_tele_commandscript();
void AddSC_ticket_commandscript();
void AddSC_titles_commandscript();
void AddSC_wp_commandscript();
void AddSC_player_commandscript();
#ifdef SCRIPTS
//world
@@ -613,7 +614,7 @@ void AddCommandScripts()
AddSC_character_commandscript();
AddSC_cheat_commandscript();
AddSC_debug_commandscript();
AddSC_deserter_commandscript();
AddSC_deserter_commandscript();
AddSC_disable_commandscript();
AddSC_event_commandscript();
AddSC_gm_commandscript();
@@ -639,6 +640,7 @@ void AddCommandScripts()
AddSC_ticket_commandscript();
AddSC_titles_commandscript();
AddSC_wp_commandscript();
AddSC_player_commandscript();
}
void AddWorldScripts()