From 8611899fc30ca006909977f08f06e270d42fa477 Mon Sep 17 00:00:00 2001 From: ZouJin Date: Sat, 10 Aug 2024 15:52:49 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E6=80=9D=E8=80=83=E5=8A=A8?= =?UTF-8?q?=E7=94=BB=E5=8F=AF=E8=83=BD=E5=B8=A6=E6=9D=A5=E7=9A=84=E5=8D=A1?= =?UTF-8?q?=E9=A1=BF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- VPet-Simulator.Windows.Interface/TalkBox.xaml.cs | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/VPet-Simulator.Windows.Interface/TalkBox.xaml.cs b/VPet-Simulator.Windows.Interface/TalkBox.xaml.cs index 272a740..b88a5d6 100644 --- a/VPet-Simulator.Windows.Interface/TalkBox.xaml.cs +++ b/VPet-Simulator.Windows.Interface/TalkBox.xaml.cs @@ -64,8 +64,12 @@ namespace VPet_Simulator.Windows.Interface /// public void DisplayThink() { + if (MainPlugin.MW.Main.DisplayType.Name == "think") + return; + var think = MainPlugin.MW.Core.Graph.FindGraphs("think", AnimatType.B_Loop, MainPlugin.MW.Core.Save.Mode); - if (think.Count > 0) + var think2 = MainPlugin.MW.Core.Graph.FindGraphs("think", AnimatType.A_Start, MainPlugin.MW.Core.Save.Mode); + if (think.Count > 0 && think2.Count > 0) { MainPlugin.MW.Main.Display("think", AnimatType.A_Start, MainPlugin.MW.Main.DisplayBLoopingForce); }