Release v3.3.2: Fix auto-update on chat switch & restore character removal
This commit is contained in:
@@ -308,6 +308,12 @@ export let isGenerating = false;
|
||||
*/
|
||||
export let isPlotProgression = false;
|
||||
|
||||
/**
|
||||
* Flag indicating if we're actively expecting a new message from generation
|
||||
* (as opposed to loading chat history)
|
||||
*/
|
||||
export let isAwaitingNewMessage = false;
|
||||
|
||||
/**
|
||||
* Temporary storage for pending dice roll (not saved until user clicks "Save Roll")
|
||||
*/
|
||||
@@ -408,6 +414,10 @@ export function setIsPlotProgression(value) {
|
||||
isPlotProgression = value;
|
||||
}
|
||||
|
||||
export function setIsAwaitingNewMessage(value) {
|
||||
isAwaitingNewMessage = value;
|
||||
}
|
||||
|
||||
export function setPendingDiceRoll(roll) {
|
||||
pendingDiceRoll = roll;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user