From ce93b1ffbd6d78ff8efcaa3520605c6f9b83fcfc Mon Sep 17 00:00:00 2001 From: rito528 Date: Sun, 26 Feb 2023 01:10:05 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20=E5=A6=96=E7=B2=BE=E3=81=8C=E5=96=8B?= =?UTF-8?q?=E3=81=A3=E3=81=9F=E3=81=A8=E3=81=8D=E3=81=AB=E9=9F=B3=E3=82=92?= =?UTF-8?q?=E9=B3=B4=E3=82=89=E3=81=99=E3=81=8B=E3=83=88=E3=82=B0=E3=83=AB?= =?UTF-8?q?=E3=81=A7=E3=81=8D=E3=81=AA=E3=81=84=E4=B8=8D=E5=85=B7=E5=90=88?= =?UTF-8?q?=E3=82=92=E4=BF=AE=E6=AD=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../seichiassist/subsystems/vote/subsystems/fairy/System.scala | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/main/scala/com/github/unchama/seichiassist/subsystems/vote/subsystems/fairy/System.scala b/src/main/scala/com/github/unchama/seichiassist/subsystems/vote/subsystems/fairy/System.scala index 57626fdc46..85af0797ff 100644 --- a/src/main/scala/com/github/unchama/seichiassist/subsystems/vote/subsystems/fairy/System.scala +++ b/src/main/scala/com/github/unchama/seichiassist/subsystems/vote/subsystems/fairy/System.scala @@ -144,7 +144,8 @@ object System { val uuid = player.getUniqueId for { isPlayFairySpeechSound <- doPlaySoundOnSpeak(uuid) - } yield persistence.setPlaySoundOnSpeech(uuid, !isPlayFairySpeechSound) + _ <- persistence.setPlaySoundOnSpeech(uuid, !isPlayFairySpeechSound) + } yield () } override def sendDisappearTimeToChat: Kleisli[IO, Player, Unit] = Kleisli {