feat(Core/WorldState): implement Battle for Sun's Reach Event (#21219)

Co-authored-by: killerwife <killerwife@gmail.com>
Co-authored-by: Benjamin Jackson <38561765+heyitsbench@users.noreply.github.com>
Co-authored-by: MantisLord <sabinprosper@gmail.com>
This commit is contained in:
Jelle Meeus 2025-01-31 13:19:12 +01:00 committed by GitHub
parent ca51e7fc22
commit 00b8a3f419
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
12 changed files with 2353 additions and 0 deletions

View file

@ -62,6 +62,7 @@ void AddSC_wp_commandscript();
void AddSC_cache_commandscript();
void AddSC_item_commandscript();
void AddSC_player_settings_commandscript();
void AddSC_worldstate_commandscript();
// The name of this function should match:
// void Add${NameOfDirectory}Scripts()
@ -113,4 +114,5 @@ void AddCommandsScripts()
AddSC_cache_commandscript();
AddSC_item_commandscript();
AddSC_player_settings_commandscript();
AddSC_worldstate_commandscript();
}