Browse Source

Merge branch 'dev' of github.com:eesast/THUAI6 into dev

tags/0.1.0
Shawqeem 3 years ago
parent
commit
fb533ee2bb
4 changed files with 4 additions and 4 deletions
  1. +1
    -1
      CAPI/python/requirements.txt
  2. +1
    -1
      dependency/proto/Protos.csproj
  3. +1
    -1
      logic/GameClass/GameObj/Character/Skill.cs
  4. +1
    -1
      logic/Server/Server.csproj

+ 1
- 1
CAPI/python/requirements.txt View File

@@ -1,2 +1,2 @@
grpcio==1.51.3
grpcio==1.53.0
grpcio-tools==1.51.3

+ 1
- 1
dependency/proto/Protos.csproj View File

@@ -18,7 +18,7 @@
<PackageReference Include="Google.Protobuf.Tools" Version="3.22.1" />
<PackageReference Include="Grpc" Version="2.46.6" />
<PackageReference Include="Grpc.Core" Version="2.46.6" />
<PackageReference Include="Grpc.Tools" Version="2.52.0">
<PackageReference Include="Grpc.Tools" Version="2.53.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>


+ 1
- 1
logic/GameClass/GameObj/Character/Skill.cs View File

@@ -93,7 +93,7 @@ namespace GameClass.GameObj

public class UseRobot : IActiveSkill
{
public int SkillCD => 0;
public int SkillCD => GameData.frameDuration;
public int DurationTime => 0;
private readonly object commonSkillLock = new object();
public object ActiveSkillLock => commonSkillLock;


+ 1
- 1
logic/Server/Server.csproj View File

@@ -13,7 +13,7 @@
<PackageReference Include="Google.Protobuf" Version="3.22.1" />
<PackageReference Include="Grpc" Version="2.46.6" />
<PackageReference Include="Grpc.Core" Version="2.46.6" />
<PackageReference Include="Grpc.Tools" Version="2.52.0">
<PackageReference Include="Grpc.Tools" Version="2.53.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>


Loading…
Cancel
Save