Revert "This is to prevent warnings for weird objects, (revert)"

This reverts commit 124ad23a950a8348d9dd32390b140ed0f8c2ddd1.
This commit is contained in:
cyberpwn 2022-04-13 18:47:31 -04:00
parent 124ad23a95
commit 584400d011

View File

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