diff --git a/VPet-Simulator.Windows.Interface/Mod/Food.cs b/VPet-Simulator.Windows.Interface/Mod/Food.cs index f940166..9cc1eff 100644 --- a/VPet-Simulator.Windows.Interface/Mod/Food.cs +++ b/VPet-Simulator.Windows.Interface/Mod/Food.cs @@ -153,7 +153,7 @@ namespace VPet_Simulator.Windows.Interface /// /// 当前物品推荐价格 /// - public double RealPrice => ((Exp / 4 + Strength / 5 + StrengthDrink / 3 + StrengthFood / 2 + Feeling / 6) / 3 + Health + Likability * 10); + public double RealPrice => ((Exp / 4 + Strength / 5 + StrengthDrink / 3 + StrengthFood / 2 + Feeling / 5) / 3 + Health + Likability * 10); /// /// 该食物是否超模 /// diff --git a/VPet-Simulator.Windows.Interface/Setting.cs b/VPet-Simulator.Windows.Interface/Setting.cs index cf999af..06fcf25 100644 --- a/VPet-Simulator.Windows.Interface/Setting.cs +++ b/VPet-Simulator.Windows.Interface/Setting.cs @@ -34,6 +34,7 @@ namespace VPet_Simulator.Windows.Interface smartmove = this["gameconfig"].GetBool("smartmove"); enablefunction = !this["gameconfig"].GetBool("nofunction"); Statistics = new Statistics(this["statistics"].ToList()); + autobuy = this["gameconfig"].GetBool("autobuy"); } public override string ToString() { @@ -426,7 +427,7 @@ namespace VPet_Simulator.Windows.Interface set { autobuy = value; - this["gameconfig"].SetBool("allowmove", !value); + this["gameconfig"].SetBool("autobuy", value); } } }