Revert default await type back to RETURN

This commit is contained in:
Samuel Williams 2020-10-23 21:26:12 +01:00
parent 6d1b34917f
commit 2c63769c19

View File

@ -133,7 +133,7 @@ function await( p, awaitType, arg )
return p
end
awaitType = awaitType or AwaitTypes.PROPAGATE
awaitType = awaitType or AwaitTypes.RETURN
local data = { coroutine.yield( awaitFlag, p ) }
local success = table.remove( data, 1 )