mirror of
https://github.com/VolmitSoftware/Iris.git
synced 2025-07-18 18:23:06 +00:00
Newline & append
This commit is contained in:
parent
cb923cef47
commit
dafa3bde8b
@ -184,15 +184,15 @@ public class CommandIrisPregenCreate extends MortarCommand {
|
|||||||
.append(",")
|
.append(",")
|
||||||
.append(z)
|
.append(z)
|
||||||
.append("\n")
|
.append("\n")
|
||||||
.append(failed.isEmpty() ? "(No failed arguments)" : "FAILED ARGS:");
|
.append(failed.isEmpty() ? "(No failed arguments)" : "FAILED ARGS:\n");
|
||||||
for (String s : failed) {
|
for (String s : failed) {
|
||||||
details.append(s).append("\n");
|
details.append(s).append("\n");
|
||||||
}
|
}
|
||||||
|
|
||||||
if (pregenerate(world, width, height, x, z)){
|
if (pregenerate(world, width, height, x, z)){
|
||||||
sender.sendMessage("Successfully started pregen");
|
details.append("Successfully started pregen");
|
||||||
} else {
|
} else {
|
||||||
sender.sendMessage("Failed to start pregen. Doublecheck your arguments!");
|
details.append("Failed to start pregen. Doublecheck your arguments!");
|
||||||
}
|
}
|
||||||
sender.sendMessage(details.toString());
|
sender.sendMessage(details.toString());
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user