Added a radius to safe claim
This commit is contained in:
25
src/org/mcteam/factions/util/MiscUtil.java
Normal file
25
src/org/mcteam/factions/util/MiscUtil.java
Normal file
@@ -0,0 +1,25 @@
|
||||
package org.mcteam.factions.util;
|
||||
|
||||
public class MiscUtil {
|
||||
|
||||
// Inclusive range
|
||||
public static long[] range(long start, long end) {
|
||||
long[] values = new long[(int) Math.abs(end - start) + 1];
|
||||
|
||||
if (end < start) {
|
||||
long oldstart = start;
|
||||
start = end;
|
||||
end = oldstart;
|
||||
}
|
||||
|
||||
|
||||
|
||||
for (long i = start; i <= end; i++) {
|
||||
values[(int) (i - start)] = i;
|
||||
}
|
||||
|
||||
return values;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user