Started fixing action target selection

This commit is contained in:
ThaumRystra
2024-06-12 15:43:56 +02:00
parent 4921a34dfe
commit a5292cf0f2
17 changed files with 162 additions and 15 deletions

View File

@@ -8,6 +8,9 @@ export default function getReplayChoicesInputProvider(actionId: string, decision
const decisionStack = [...decisions].reverse();
const dRoller = getDeterministicDiceRoller(actionId);
const replaySavedInput: InputProvider = {
targetIds() {
return Promise.resolve(decisionStack.pop());
},
nextStep() {
return Promise.resolve();
},