Comment error

This commit is contained in:
Alessandro Proto 2023-02-25 09:31:44 +01:00
parent 311b705fa9
commit 085e2c2947

View file

@ -71,7 +71,7 @@ public class TCP : IComponent
{ {
_game.LuaRuntime.QueueEvent("tcp_connect", LK => _game.LuaRuntime.QueueEvent("tcp_connect", LK =>
{ {
var handle = new FileHandle /*var handle = new FileHandle
{ {
Stream = client.GetStream(), Stream = client.GetStream(),
DefaultSize = client.ReceiveBufferSize, DefaultSize = client.ReceiveBufferSize,
@ -79,7 +79,7 @@ public class TCP : IComponent
LK.PushInteger(id); LK.PushInteger(id);
ObjectManager.PushObject(L, handle); ObjectManager.PushObject(L, handle);
L.SetMetaTable("file"); L.SetMetaTable("file");*/
return 2; return 2;
}); });
} }