From 1ade2d23ccb4c4a5a527ae83d020a4b405aea7f1 Mon Sep 17 00:00:00 2001 From: ZouJin Date: Sat, 26 Aug 2023 08:39:13 +1000 Subject: [PATCH] =?UTF-8?q?=E5=AF=B9=E4=BA=8E=E4=B9=8B=E5=89=8D=E7=9A=84?= =?UTF-8?q?=E4=BD=9C=E5=BC=8AMOD=E7=AE=80=E5=8D=95=E6=A3=80=E6=9F=A5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- VPet-Simulator.Windows/MainWindow.xaml.cs | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/VPet-Simulator.Windows/MainWindow.xaml.cs b/VPet-Simulator.Windows/MainWindow.xaml.cs index 32a1417..b64ae96 100644 --- a/VPet-Simulator.Windows/MainWindow.xaml.cs +++ b/VPet-Simulator.Windows/MainWindow.xaml.cs @@ -371,7 +371,14 @@ namespace VPet_Simulator.Windows AutoSaveTimer.Elapsed += AutoSaveTimer_Elapsed; - if (Set.AutoSaveInterval > 0) + if(Set.Statistics[(gdbe)"stat_bb_food"] < 0 || Set.Statistics[(gdbe)"stat_bb_drink"] < 0 || Set.Statistics[(gdbe)"stat_bb_drug"] < 0 + || Set.Statistics[(gdbe)"stat_bb_snack"] < 0 || Set.Statistics[(gdbe)"stat_bb_functional"] < 0 || Set.Statistics[(gdbe)"stat_bb_meal"] < 0 + || Set.Statistics[(gdbe)"stat_bb_gift"] < 0) + { + hashCheck = false; + } + + if (Set.AutoSaveInterval > 0) { AutoSaveTimer.Interval = Set.AutoSaveInterval * 60000; AutoSaveTimer.Start();