Browse Source

Merge pull request #561 from DragonAura/dev

fix(CAPI): 🐛 fix wrong num
tags/v0.1.0
shangfengh GitHub 2 years ago
parent
commit
ffa8490519
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
      CAPI/python/PyAPI/constants.py

+ 1
- 1
CAPI/python/PyAPI/constants.py View File

@@ -304,7 +304,7 @@ class WriteAnswers:


class SummonGolem:
skillCD = (int)(4 * Constants.commonSkillCD//3)
skillCD = (int)(Constants.commonSkillCD * 4 // 3)
durationTime = (int)(6.0 * Constants.commonSkillTime)




Loading…
Cancel
Save