v3.2.1: fixed scroll empower overriding itself when it shouldn't

This commit is contained in:
Evan Debenham
2025-08-13 14:12:26 -04:00
parent 2adef1f5fb
commit c1f699ab32

View File

@@ -33,10 +33,10 @@ public class ScrollEmpower extends Buff {
type = buffType.POSITIVE;
}
private int left;
private int left = 0;
public void reset(int left){
this.left = left;
this.left = Math.max(this.left, left);
Item.updateQuickslot();
}