mirror of
https://github.com/VolmitSoftware/Iris.git
synced 2026-04-05 23:36:12 +00:00
Tweaking carves
This commit is contained in:
@@ -73,7 +73,7 @@ public class CommandIsh implements CommandExecutor
|
||||
try
|
||||
{
|
||||
FileOutputStream fos = new FileOutputStream(f);
|
||||
s.write(fos);
|
||||
s.write(fos, true);
|
||||
msg(p, "Saved " + args[1] + " (" + F.f(s.getSchematic().size()) + " Entries)");
|
||||
p.playSound(p.getLocation(), Sound.BLOCK_ENCHANTMENT_TABLE_USE, 1f, 0.45f);
|
||||
}
|
||||
@@ -97,7 +97,7 @@ public class CommandIsh implements CommandExecutor
|
||||
try
|
||||
{
|
||||
FileInputStream fin = new FileInputStream(f);
|
||||
s.read(fin);
|
||||
s.read(fin, true);
|
||||
|
||||
boolean cursor = false;
|
||||
for(String i : args)
|
||||
|
||||
Reference in New Issue
Block a user