fix: call self.load() in all game system manager __init__ methods #1361
Reference in New Issue
Block a user
Delete Branch "burn/20260413-0408-fix"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Problem
All 5 game system managers (Quest, Inventory, Guild, Combat, Magic) had
load()methods that were never called from__init__. This meant:get_available_quests()always returned emptyFix
Added
self.load()at the end of each manager's__init__method.Fixes #1351