mirror of
https://github.com/PolyhedralDev/Terra.git
synced 2026-04-11 18:26:08 +00:00
actually fix rangeloader
This commit is contained in:
@@ -38,7 +38,7 @@ public class ConstantRange implements Range {
|
||||
|
||||
@Override
|
||||
public int get(Random r) {
|
||||
return r.nextInt((max - min) + 1) + min;
|
||||
return r.nextInt(min, max);
|
||||
}
|
||||
|
||||
@Override
|
||||
|
||||
Reference in New Issue
Block a user