mirror of
https://github.com/VolmitSoftware/Iris.git
synced 2025-07-18 10:12:53 +00:00
Dum
This commit is contained in:
parent
f0375ca446
commit
c5429f0515
@ -32,7 +32,7 @@ def main = 'com.volmit.iris.Iris'
|
|||||||
registerCustomOutputTask('Cyberpwn', 'C://Users/cyberpwn/Documents/development/server/plugins', name)
|
registerCustomOutputTask('Cyberpwn', 'C://Users/cyberpwn/Documents/development/server/plugins', name)
|
||||||
registerCustomOutputTask('Psycho', 'D://Dan/MinecraftDevelopment/server/plugins', name)
|
registerCustomOutputTask('Psycho', 'D://Dan/MinecraftDevelopment/server/plugins', name)
|
||||||
registerCustomOutputTask('ArcaneArts', 'C://Users/arcane/Documents/development/server/plugins', name)
|
registerCustomOutputTask('ArcaneArts', 'C://Users/arcane/Documents/development/server/plugins', name)
|
||||||
registerCustomOutputTask('Coco', 'C:/Users/sjoer/Documents/Development/MCServer/plugins', name)
|
registerCustomOutputTask('Coco', 'G://MCServer/plugins', name)
|
||||||
registerCustomOutputTask('Strange', 'D://Servers/1.17 Test Server/plugins', name)
|
registerCustomOutputTask('Strange', 'D://Servers/1.17 Test Server/plugins', name)
|
||||||
// ==============================================================
|
// ==============================================================
|
||||||
|
|
||||||
|
@ -196,14 +196,14 @@ public class CommandIris implements DecreeExecutor {
|
|||||||
BurstExecutor b = MultiBurst.burst.burst();
|
BurstExecutor b = MultiBurst.burst.burst();
|
||||||
b.setMulticore(false);
|
b.setMulticore(false);
|
||||||
int rad = engine.getMantle().getRealRadius();
|
int rad = engine.getMantle().getRealRadius();
|
||||||
for (int i = -(vd + rad); i <= vd + rad; i++) {
|
for (int i = -(radius + rad); i <= radius + rad; i++) {
|
||||||
for (int j = -(vd + rad); j <= vd + rad; j++) {
|
for (int j = -(radius + rad); j <= radius + rad; j++) {
|
||||||
engine.getMantle().getMantle().deleteChunk(i + cx.getX(), j + cx.getZ());
|
engine.getMantle().getMantle().deleteChunk(i + cx.getX(), j + cx.getZ());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
for (int i = -vd; i <= vd; i++) {
|
for (int i = -radius; i <= radius; i++) {
|
||||||
for (int j = -vd; j <= vd; j++) {
|
for (int j = -radius; j <= radius; j++) {
|
||||||
int finalJ = j;
|
int finalJ = j;
|
||||||
int finalI = i;
|
int finalI = i;
|
||||||
b.queue(() -> plat.injectChunkReplacement(player().getWorld(), finalI + cx.getX(), finalJ + cx.getZ(), (f) -> {
|
b.queue(() -> plat.injectChunkReplacement(player().getWorld(), finalI + cx.getX(), finalJ + cx.getZ(), (f) -> {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user