Fix missing ILuaCsNetworking API

This commit is contained in:
Evil Factory
2026-02-20 19:32:03 -03:00
parent f52617deab
commit 124b1e545d
3 changed files with 14 additions and 1 deletions
@@ -180,4 +180,7 @@ partial class NetworkingService : INetworkingService, IEventClientRawNetMessageR
GameMain.Server.ServerPeer.Send(netMessage, connection, deliveryMethod);
}
}
public void Send(IWriteMessage netMessage, NetworkConnection connection = null, DeliveryMethod deliveryMethod = DeliveryMethod.Reliable)
=> SendToClient(netMessage, connection, deliveryMethod);
}