修复工作问题

This commit is contained in:
ZouJin 2024-03-15 18:46:43 +08:00
parent 78b84adf32
commit d2d977b858
2 changed files with 2 additions and 2 deletions
VPet-Simulator.Core/Display
VPet-Simulator.Windows.Interface/Mod

@ -38,7 +38,7 @@ namespace VPet_Simulator.Core
DisplaySleep(true);
return;
case WorkingState.Work:
nowWork.Display(this);
NowWork.Display(this);
return;
case WorkingState.Travel:
//TODO

@ -79,7 +79,7 @@ namespace VPet_Simulator.Windows.Interface
{
if (m.State != WorkingState.Work)
return false;
if (m.nowWork.Name != Working)
if (m.NowWork.Name != Working)
return false;
}
return true;