修复自动喂食问题 fix #404

This commit is contained in:
ZouJin 2024-07-04 15:16:04 +08:00
parent be2773ec6c
commit d5d9804548

View File

@ -481,7 +481,7 @@ namespace VPet_Simulator.Windows
}
else // 没有自动购买礼物的可以试试自动购买零食能加点是一点
{
food = food.FindAll(x => x.Type == Food.FoodType.Snack && x.Feeling > Math.Min(Core.Save.FeelingMax * 0.10, 50));
food = food.FindAll(x => x.Type == Food.FoodType.Snack && x.Feeling > Math.Min(Core.Save.FeelingMax * 0.10, 40));
if (food.Count == 0)
return;
}