[Bug Fix] ReloadQuests() on Zone::Init() to avoid cached global quests/plugins (#3333)

# Notes
- Before this, quests/plugins would be cached in an old state, so you'd have to either enter the zone and `#reload quest` or `#reload world` to get them to update.
This commit is contained in:
Alex King 2023-05-07 14:41:57 -04:00 committed by GitHub
parent 5475615448
commit 8c23eee42a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1213,6 +1213,8 @@ bool Zone::Init(bool is_static) {
npc_scale_manager->LoadScaleData();
parse->ReloadQuests();
// logging origination information
LogSys.origination_info.zone_short_name = zone->short_name;
LogSys.origination_info.zone_long_name = zone->long_name;