muffin v7.5.12
This commit is contained in:
parent
3102923ce2
commit
911ed68baa
65 changed files with 2356 additions and 1539 deletions
|
|
@ -86,6 +86,12 @@ internal static class Action
|
|||
return Environment.TickCount64 - _questFlagWaitStarted > (long)(timeoutSeconds * 1000f);
|
||||
}
|
||||
|
||||
public override void ResetTimeout()
|
||||
{
|
||||
base.ResetTimeout();
|
||||
_questFlagWaitStarted = Environment.TickCount64;
|
||||
}
|
||||
|
||||
protected override bool Start()
|
||||
{
|
||||
if (base.Task.DataId.HasValue)
|
||||
|
|
@ -283,6 +289,12 @@ internal static class Action
|
|||
return Environment.TickCount64 - _startedAt > (long)(timeoutSeconds * 1000f);
|
||||
}
|
||||
|
||||
public override void ResetTimeout()
|
||||
{
|
||||
base.ResetTimeout();
|
||||
_startedAt = Environment.TickCount64;
|
||||
}
|
||||
|
||||
protected override bool Start()
|
||||
{
|
||||
if (gameFunctions.HasStatus(base.Task.Status))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue