This commit is contained in:
Daniel Mills 2021-01-08 03:19:56 -05:00
parent 91e1b614f3
commit 3f9288c60f
3 changed files with 6 additions and 2 deletions

View File

@ -4,7 +4,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.volmit</groupId>
<artifactId>Iris</artifactId>
<version>1.2.4-hotfix1</version>
<version>1.2.5</version>
<name>Iris</name>
<properties>
<skip.copy>false</skip.copy>

View File

@ -28,7 +28,6 @@ public class CommandIrisStudioGoto extends MortarCommand
{
list.add(IrisWorlds.access(sender.player().getWorld()).getData().getBiomeLoader().getPossibleKeys());
list.add(IrisWorlds.access(sender.player().getWorld()).getData().getRegionLoader().getPossibleKeys());
list.add(IrisWorlds.access(sender.player().getWorld()).getData().getObjectLoader().getPossibleKeys());
}
}

View File

@ -246,6 +246,11 @@ public interface IrisAccess extends Hotloadable, DataProvider {
}
}
if(engines.isEmpty())
{
return null;
}
AtomicInteger tries = new AtomicInteger(0);
AtomicBoolean found = new AtomicBoolean(false);
AtomicReference<Location> location = new AtomicReference<>();