Update b2dynamictree (#30630)

This commit is contained in:
metalgearsloth
2025-03-08 14:49:13 +11:00
committed by GitHub
parent 31a45a427c
commit a695a527f0
3 changed files with 8 additions and 2 deletions

View File

@@ -62,7 +62,10 @@ public abstract partial class InteractionTest
// Please someone purge async construction code
Task<bool> task = default!;
await Server.WaitPost(() => task = SConstruction.TryStartItemConstruction(prototype, SEntMan.GetEntity(Player)));
await Server.WaitPost(() =>
{
task = SConstruction.TryStartItemConstruction(prototype, SEntMan.GetEntity(Player));
});
Task? tickTask = null;
while (!task.IsCompleted)