Browse Source

Merge pull request #633 from eesast/dev

fix: 🐛 fix the Initial value
tags/v0.1.0
shangfengh GitHub 2 years ago
parent
commit
019d7e2526
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      logic/Preparation/Interface/ISkill.cs

+ 1
- 1
logic/Preparation/Interface/ISkill.cs View File

@@ -30,7 +30,7 @@ namespace Preparation.Interface
private readonly object skillLock = new();
public object SkillLock => skillLock;

private long startTime = 0;
private long startTime = Environment.TickCount64 - 600000;
public long StartTime
{
get


Loading…
Cancel
Save