v0.6.2: fixed exp progression bugs with cloak of shadows
This commit is contained in:
parent
23f1c33d82
commit
3fff744394
|
@ -233,7 +233,7 @@ public class CloakOfShadows extends Artifact {
|
|||
((Hero) target).interrupt();
|
||||
} else {
|
||||
//target hero level is 1 + 2*cloak level
|
||||
int lvlDiffFromTarget = ((Hero) target).lvl - 1+level()*2;
|
||||
int lvlDiffFromTarget = ((Hero) target).lvl - (1+level()*2);
|
||||
//plus an extra one for each level after 6
|
||||
if (level() >= 7){
|
||||
lvlDiffFromTarget -= level()-6;
|
||||
|
|
Loading…
Reference in New Issue
Block a user