From c5fe33e1ab8f09bfc500edd7f5b0a87901e90cf2 Mon Sep 17 00:00:00 2001 From: ZouJin Date: Sat, 26 Aug 2023 23:56:10 +1000 Subject: [PATCH] =?UTF-8?q?=E6=95=B0=E6=8D=AE=E5=85=A8=E6=98=AF0=E5=AD=98?= =?UTF-8?q?=E6=A1=A3=E4=B8=8D=E5=8A=A0=E8=BD=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- VPet-Simulator.Windows/MainWindow.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/VPet-Simulator.Windows/MainWindow.cs b/VPet-Simulator.Windows/MainWindow.cs index 2f498ba..d2cb187 100644 --- a/VPet-Simulator.Windows/MainWindow.cs +++ b/VPet-Simulator.Windows/MainWindow.cs @@ -576,7 +576,7 @@ namespace VPet_Simulator.Windows if (string.IsNullOrWhiteSpace(line.ToString())) return false; Core.Save = GameSave.Load(line); - if (Core.Save.Money == 0 && Core.Save.Level == 0 && Core.Save.Likability == 0)//数据全是0,可能是bug + if (Core.Save.Money == 0 && Core.Save.Likability == 0 && Core.Save.Exp == 0 && Core.Save.StrengthDrink == 0 && Core.Save.StrengthFood == 0)//数据全是0,可能是bug return false; long hash = line.GetInt64("hash"); if (line.Remove("hash"))