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,8 +241,16 @@ public class IrisWorldManager extends EngineAssignedWorldManager {
} }
} }
try
{
spawn(c, v); spawn(c, v);
} }
catch(Throwable e)
{
J.s(() -> spawn(c, v));
}
}
//@done //@done
} }