mirror of
https://github.com/raeleus/Hashtag-DnD.git
synced 2025-08-22 10:17:08 -04:00
Fixed autocards not updating on output in certain circumstances.
This commit is contained in:
parent
a0b34e059b
commit
2a05c60a50
1 changed files with 4 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue