We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c4b6849 commit fc39a0fCopy full SHA for fc39a0f
src/common/Edelstein.Common.Gameplay.Game/Continent/ContiMoveManagerTicker.cs
@@ -28,6 +28,8 @@ public void Act()
28
contimove.Trigger(ContiMoveStateTrigger.Start);
29
break;
30
case ContiMoveState.Move:
31
+ if (now > contimove.NextEnd)
32
+ contimove.Trigger(ContiMoveStateTrigger.End);
33
if (contimove.NextEvent.HasValue && now > contimove.NextEvent.Value)
34
contimove.Trigger(ContiMoveStateTrigger.MobGen);
35
0 commit comments