Fixed autocards not updating on output in certain circumstances.

This commit is contained in:
raeleus 2025-08-05 22:52:10 -07:00
parent a0b34e059b
commit 2a05c60a50

View file

@ -1,5 +1,8 @@
const modifier = (text) => {
if (state.show == null) return { text }
if (state.show == null) {
text = AutoCards("output", text);
return { text }
}
var character = getCharacter()
var possessiveName = character == null ? null : getPossessiveName(character.name)