diff --git a/BeefLibs/corlib/src/Net/Socket.bf b/BeefLibs/corlib/src/Net/Socket.bf index 49c067e4..e4e6b648 100644 --- a/BeefLibs/corlib/src/Net/Socket.bf +++ b/BeefLibs/corlib/src/Net/Socket.bf @@ -160,7 +160,7 @@ namespace System.Net get => mIsBlocking; set { - mIsBlocking = true; + mIsBlocking = value; if (mHandle != INVALID_SOCKET) SetBlocking(mIsBlocking); }