9
0
mirror of https://github.com/VolmitSoftware/Iris.git synced 2025-12-30 04:29:05 +00:00

Loading & Saving!

This commit is contained in:
Daniel Mills
2020-08-24 12:57:25 -04:00
parent 998e1b62a5
commit 44b6396b78
3 changed files with 56 additions and 3 deletions

View File

@@ -27,7 +27,15 @@ public class CommandIrisStructureVariants extends MortarCommand
Player p = sender.player();
Iris.struct.get(p).openVariants();
try
{
Iris.struct.get(p).openVariants();
}
catch(Throwable e)
{
sender.sendMessage("You do not have an open structure");
}
return true;
}