Merge remote-tracking branch 'origin/Development' into Development

This commit is contained in:
Vatuu 2022-05-15 01:27:07 +02:00
commit ecbd5677ce
No known key found for this signature in database
GPG Key ID: C6F07B79B2ED9150

View File

@ -37,12 +37,12 @@ public class IrisObjectLimit {
@MinNumber(0) @MinNumber(0)
@MaxNumber(1024) @MaxNumber(1024)
@Desc("The minimum height for placement (bottom of object)") @Desc("The minimum height for placement (bottom of object)")
private int minimumHeight = 0; private int minimumHeight = -2048; //TODO: WARNING HEIGHT
@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 = 255; private int maximumHeight = 2048; //TODO: WARNING HEIGHT
public boolean canPlace(int h, int l) { public boolean canPlace(int h, int l) {
return h <= maximumHeight && l >= minimumHeight; return h <= maximumHeight && l >= minimumHeight;