From e5278e6720eaca79533477ec8dcc80e0fb9b067f Mon Sep 17 00:00:00 2001 From: ZouJin Date: Sun, 1 Oct 2023 02:45:49 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E7=82=B9=E5=87=BB=E8=AF=B4?= =?UTF-8?q?=E8=AF=9D=E4=B8=8D=E8=A7=A6=E5=8F=91=E6=88=90=E5=B0=B1=E7=9A=84?= =?UTF-8?q?bug?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- VPet-Simulator.Windows/MainWindow.cs | 2 +- VPet-Simulator.Windows/MainWindow.xaml.cs | 12 ++++++------ 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/VPet-Simulator.Windows/MainWindow.cs b/VPet-Simulator.Windows/MainWindow.cs index 0607eb6..368670f 100644 --- a/VPet-Simulator.Windows/MainWindow.cs +++ b/VPet-Simulator.Windows/MainWindow.cs @@ -49,7 +49,7 @@ namespace VPet_Simulator.Windows /// /// 版本号 /// - public int version { get; } = 107; + public int version { get; } = 108; /// /// 版本号 /// diff --git a/VPet-Simulator.Windows/MainWindow.xaml.cs b/VPet-Simulator.Windows/MainWindow.xaml.cs index bf59667..f1f8bf8 100644 --- a/VPet-Simulator.Windows/MainWindow.xaml.cs +++ b/VPet-Simulator.Windows/MainWindow.xaml.cs @@ -663,24 +663,24 @@ namespace VPet_Simulator.Windows { if (rt.Exp > 0) { - GameSavesData.Statistics[(gint)"stat_rt_exp_p"]++; + GameSavesData.Statistics[(gint)"stat_say_exp_p"]++; } else - GameSavesData.Statistics[(gint)"stat_rt_exp_d"]++; + GameSavesData.Statistics[(gint)"stat_say_exp_d"]++; } if (rt.Likability != 0) { if (rt.Likability > 0) - GameSavesData.Statistics[(gint)"stat_rt_like_p"]++; + GameSavesData.Statistics[(gint)"stat_say_like_p"]++; else - GameSavesData.Statistics[(gint)"stat_rt_like_d"]++; + GameSavesData.Statistics[(gint)"stat_say_like_d"]++; } if (rt.Money != 0) { if (rt.Money > 0) - GameSavesData.Statistics[(gint)"stat_rt_money_p"]++; + GameSavesData.Statistics[(gint)"stat_say_money_p"]++; else - GameSavesData.Statistics[(gint)"stat_rt_money_d"]++; + GameSavesData.Statistics[(gint)"stat_say_money_d"]++; } Main.Core.Save.EatFood(rt); Main.Core.Save.Money += rt.Money;