generated from nhcarrigan/template
fix: extend force-unlock to cover upgrades, equipment, and story chapters
The force-unlock debug tool now also corrects three additional categories of stuck state: - Upgrades: scans defeated bosses and completed quests for upgrade rewards and marks those upgrades as unlocked - Equipment: scans defeated bosses for equipment rewards and marks those items as owned (without auto-equipping) - Story chapters: checks every chapter's unlock condition against the current game state and adds any missing IDs to unlockedChapterIds The result message in the debug panel now reports all eight corrected categories.
This commit is contained in:
@@ -430,6 +430,21 @@ interface ForceUnlocksResponse {
|
||||
*/
|
||||
adventurersUnlocked: number;
|
||||
|
||||
/**
|
||||
* Number of upgrades that were unlocked by this operation.
|
||||
*/
|
||||
upgradesUnlocked: number;
|
||||
|
||||
/**
|
||||
* Number of equipment items that were marked as owned by this operation.
|
||||
*/
|
||||
equipmentUnlocked: number;
|
||||
|
||||
/**
|
||||
* Number of story chapters that were unlocked by this operation.
|
||||
*/
|
||||
storyUnlocked: number;
|
||||
|
||||
/**
|
||||
* HMAC-SHA256 signature of the corrected state for anti-cheat chain continuity.
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user