Fix broad_challenge calculation
This commit is contained in:
parent
515449addd
commit
d2ac78bb5d
|
@ -13,7 +13,9 @@ def narrow_challenge(difficulty_level: int, stat: int):
|
||||||
return stat/10
|
return stat/10
|
||||||
|
|
||||||
def broad_challenge(difficulty_level: int, stat: int):
|
def broad_challenge(difficulty_level: int, stat: int):
|
||||||
chance = DIFFICULTY_SCALER*stat//difficulty_level
|
chance = DIFFICULTY_SCALER*stat/difficulty_level * 100
|
||||||
|
chance = chance // 1
|
||||||
|
chance /= 100
|
||||||
|
|
||||||
return chance
|
return chance
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue