1
0
mirror of https://github.com/IkarusHD/ICF-3.git synced 2025-03-04 03:03:12 -05:00

Fix nil error

This commit is contained in:
Astralcircle 2025-01-09 17:22:41 +03:00
parent c29b840e43
commit 5e56045382

View File

@ -54,6 +54,8 @@ end
net.Receive("ACF_Networking", function(Bits)
local Bytes = net.ReadUInt(12)
local String = Decompress(net.ReadData(Bytes))
if not String then return end
local Message = ToTable(String)
if not Message then