fix(Scripts/Noblegarden): fix bunny transformation on egg looting (#21957)

This commit is contained in:
sudlud 2025-04-19 13:15:33 +02:00 committed by GitHub
parent 704f7f0705
commit 68558e8626
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 69 additions and 16 deletions

View file

@ -24,6 +24,7 @@ void AddSC_event_love_in_the_air();
void AddSC_event_midsummer_scripts();
void AddSC_event_childrens_week();
void AddSC_event_firework_show_scripts();
void AddSC_event_noblegarden_scripts();
// The name of this function should match:
// void Add${NameOfDirectory}Scripts()
@ -37,4 +38,5 @@ void AddEventsScripts()
AddSC_event_midsummer_scripts();
AddSC_event_childrens_week();
AddSC_event_firework_show_scripts();
AddSC_event_noblegarden_scripts();
}