255 & no more flying objects

lol why does this happen
This commit is contained in:
Brian Fopiano 2022-04-03 01:34:43 -07:00
parent ea17e916b8
commit d81986bcc5

View File

@ -42,7 +42,7 @@ public class IrisObjectLimit {
@MinNumber(0)
@MaxNumber(1024)
@Desc("The maximum height for placement (top of object)")
private int maximumHeight = 512;
private int maximumHeight = 255;
public boolean canPlace(int h, int l) {
return h <= maximumHeight && l >= minimumHeight;