Fix async spawn issue on spigot

This commit is contained in:
Daniel Mills 2021-08-08 01:13:53 -04:00
parent 7f6fec5530
commit 4e131d9a54
2 changed files with 10 additions and 2 deletions

View File

@ -241,7 +241,15 @@ public class IrisWorldManager extends EngineAssignedWorldManager {
}
}
spawn(c, v);
try
{
spawn(c, v);
}
catch(Throwable e)
{
J.s(() -> spawn(c, v));
}
}
//@done
}