repair issue caused by earlier hotfix

This commit is contained in:
betalars 2025-05-12 19:05:13 +02:00
parent 36f739a17a
commit 54e046ea95
1 changed files with 3 additions and 3 deletions

View File

@ -182,9 +182,9 @@ func pick(id: int):
randomize() randomize()
winning_id = randi() % options.size() winning_id = randi() % options.size()
else: else:
winning_id = 2 if id == 0 else 0 winning_id = 1 if id == 0 else 0
#Steam.setAchievement("FIGHT_BACK") Steam.setAchievement("FIGHT_BACK")
#Steam.storeStats() Steam.storeStats()
output.append(options.pop_at(winning_id)) output.append(options.pop_at(winning_id))
random_player = anim_players[winning_id] random_player = anim_players[winning_id]