fix #184: void card spelling error
This commit is contained in:
parent
a06e002052
commit
e52cdc4b7a
|
|
@ -190,6 +190,7 @@ func pick(id: int):
|
|||
Steam.storeStats()
|
||||
|
||||
output.append(options.pop_at(winning_id))
|
||||
# FIXME: this causes a hickup when skippin the first animation
|
||||
random_player = anim_players[winning_id]
|
||||
anim_players.pop_at(winning_id).play("shuffle")
|
||||
|
||||
|
|
@ -218,7 +219,7 @@ func transition():
|
|||
elif selection_state == POSTS_SELECTED:
|
||||
var out_str:Array[StringName] = []
|
||||
for card in output:
|
||||
out_str.append(card.text if card.text != "" else "void")
|
||||
out_str.append(card.text if card.text != "" else "c_void")
|
||||
cards_picked.emit(out_str)
|
||||
selection_state = DONE
|
||||
Scenes.end_current_sequence()
|
||||
|
|
|
|||
Loading…
Reference in New Issue