v2.1.0: fixed boss regen limits not working as intended

This commit is contained in:
Evan Debenham
2023-05-24 19:22:08 -04:00
parent 2a3e6f524f
commit 8c6a45a9c9

View File

@@ -48,7 +48,7 @@ public class LockedFloor extends Buff {
public void addTime(float time){
left += time;
left = Math.max(left, 50); //cannot build to more than 50
left = Math.min(left, 50); //cannot build to more than 50
}
public void removeTime(float time){