diff --git a/lua/cfc_disconnect_interface/server/sv_pinger.lua b/lua/cfc_disconnect_interface/server/sv_pinger.lua index c93be27..7e01cd2 100644 --- a/lua/cfc_disconnect_interface/server/sv_pinger.lua +++ b/lua/cfc_disconnect_interface/server/sv_pinger.lua @@ -1,9 +1,10 @@ local PING_TIME = 1 local players = {} +local unreliable = true local function ping( ply ) - net.Start( "CFC_DisconnectInterface_Ping" ) + net.Start( "CFC_DisconnectInterface_Ping", unreliable ) net.Send( ply or players ) end