From 3c3b88f05c798639f96713e425fb71af60132ce8 Mon Sep 17 00:00:00 2001 From: Rosemary Witchaven <32779090+in1tiate@users.noreply.github.com> Date: Sun, 10 Oct 2021 17:59:07 -0500 Subject: [PATCH] Fix paired character only playing animations once (#603) --- src/courtroom.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/courtroom.cpp b/src/courtroom.cpp index fc2e2f9..7081c71 100644 --- a/src/courtroom.cpp +++ b/src/courtroom.cpp @@ -2451,6 +2451,7 @@ void Courtroom::display_pair_character(QString other_charid, QString other_offse // Play the other pair character's idle animation QString filename = "(a)" + m_chatmessage[OTHER_EMOTE]; + ui_vp_sideplayer_char->set_play_once(false); ui_vp_sideplayer_char->load_image(filename, m_chatmessage[OTHER_NAME], 0, false); }