rename fileName + alias force

This commit is contained in:
CocoTheOwner 2021-08-19 09:54:33 +02:00
parent 11d0274a1b
commit ade88a6055

View File

@ -309,21 +309,13 @@ public class DecObject implements DecreeExecutor {
}; };
} }
//@Decree(description = "Paste a matter object", aliases = "matterpaste")
public void mpaste(
@Param(description = "The matter object to paste")
Matter object
){
WorldMatter.placeMatter(object, player().getLocation());
}
@Decree(description = "Save an object") @Decree(description = "Save an object")
public void save( public void save(
@Param(description = "The dimension to store the object in", contextual = true) @Param(description = "The dimension to store the object in", contextual = true)
IrisDimension dimension, IrisDimension dimension,
@Param(description = "The file to store it in, can use / for subfolders") @Param(description = "The file to store it in, can use / for subfolders")
String fileName, String name,
@Param(description = "Overwrite existing object files", defaultValue = "false") @Param(description = "Overwrite existing object files", defaultValue = "false", aliases = "force")
boolean overwrite boolean overwrite
){ ){
IrisObject o = WandSVC.createSchematic(player().getInventory().getItemInMainHand()); IrisObject o = WandSVC.createSchematic(player().getInventory().getItemInMainHand());
@ -333,7 +325,7 @@ public class DecObject implements DecreeExecutor {
return; return;
} }
File file = Iris.service(StudioSVC.class).getWorkspaceFile(dimension.getLoadKey(), "objects", fileName + ".iob"); File file = Iris.service(StudioSVC.class).getWorkspaceFile(dimension.getLoadKey(), "objects", name + ".iob");
if (file.exists() && !overwrite) { if (file.exists() && !overwrite) {
sender().sendMessage(C.RED + "File already exists. Set overwrite=true to overwrite it."); sender().sendMessage(C.RED + "File already exists. Set overwrite=true to overwrite it.");
@ -347,6 +339,6 @@ public class DecObject implements DecreeExecutor {
} }
sender().playSound(Sound.BLOCK_ENCHANTMENT_TABLE_USE, 1f, 1.5f); sender().playSound(Sound.BLOCK_ENCHANTMENT_TABLE_USE, 1f, 1.5f);
sender().sendMessage(C.GREEN + "Successfully object to saved: " + dimension.getLoadKey() + "/objects/" + fileName); sender().sendMessage(C.GREEN + "Successfully object to saved: " + dimension.getLoadKey() + "/objects/" + name);
} }
} }