v0.2.3: reduced recharge speed of cloak, now scales on missing charge instead of level.
This commit is contained in:
parent
50c7f1e9aa
commit
c8a5884b45
|
@ -177,7 +177,7 @@ public class CloakOfShadows extends Artifact {
|
|||
public boolean act() {
|
||||
if (charge < chargeCap) {
|
||||
if (!stealthed)
|
||||
partialCharge += (1f / (50-(level*2)));
|
||||
partialCharge += (1f / (60 - (chargeCap-charge)*2));
|
||||
|
||||
if (partialCharge >= 1) {
|
||||
charge++;
|
||||
|
|
Loading…
Reference in New Issue
Block a user