v0.3.5: fixed infinite shield stacking with slam
This commit is contained in:
parent
4a25517b81
commit
c888512840
|
@ -253,7 +253,7 @@ public class Combo extends Buff implements ActionIndicator.Action {
|
|||
}
|
||||
break;
|
||||
case SLAM:
|
||||
target.SHLD += dmg/2;
|
||||
target.SHLD = Math.max( target.SHLD, dmg/2);
|
||||
break;
|
||||
default:
|
||||
//nothing
|
||||
|
|
Loading…
Reference in New Issue
Block a user