Patches my own previous code

Error prevention code was already in place but was misplaced. The method was ran prior to the null check.
This commit is contained in:
CocoTheOwner 2020-12-18 17:16:56 +01:00
parent 1365d442e9
commit 68214cf16f

View File

@ -53,12 +53,18 @@ public class IrisProject
} }
IrisDimension d = IrisDataManager.loadAnyDimension(getName()); IrisDimension d = IrisDataManager.loadAnyDimension(getName());
if(d == null)
{
sender.sendMessage("Can't find dimension: " + getName());
return;
}
J.attemptAsync(() -> J.attemptAsync(() ->
{ {
try try
{ {
if (d.getLoader() == null){ if (d.getLoader() == null){
sender.sendMessage("That pack does not exist"); sender.sendMessage("Could not get dimension loader");
return; return;
} }
File f = d.getLoader().getDataFolder(); File f = d.getLoader().getDataFolder();
@ -109,11 +115,6 @@ public class IrisProject
e.printStackTrace(); e.printStackTrace();
} }
}); });
if(d == null)
{
sender.sendMessage("Can't find dimension: " + getName());
return;
}
String wfp = "iris/" + UUID.randomUUID(); String wfp = "iris/" + UUID.randomUUID();