Remove startThumbnail and startActors from Stage type#107
Merged
Conversation
The UI controls for saving/restoring initial game state were removed in a prior commit. This removes the remaining dead code: the saveInitialGameState/restoreInitialGameState actions, their reducer cases, the startActors/startThumbnail fields on Stage, and the dispatch of restoreInitialGameState on player load. When opening a game to play it, it now uses the stage's current actor state directly. https://claude.ai/code/session_01Tz6UrBPXv4y39VUsc3aAKj
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR removes the
startThumbnailandstartActorsproperties from the Stage type and all related functionality for saving and restoring initial game state.Summary
The initial game state save/restore feature has been completely removed from the codebase. This includes the data structures that stored thumbnail images and actor states at the beginning of a stage.
Key Changes
startThumbnailandstartActorsproperties from theStagetype definition in both frontend and headless type filessaveInitialGameState()andrestoreInitialGameState()action creators from stage-actions.tsSAVE_INITIAL_GAME_STATEandRESTORE_INITIAL_GAME_STATErestoreInitialGameStatedispatch call from root-player.tsxRESTORE_INITIAL_GAME_STATEcase from world-reducer.tsImplementation Details
https://claude.ai/code/session_01Tz6UrBPXv4y39VUsc3aAKj