import files from workshop (237537750)

This commit is contained in:
edshot99 2024-01-26 15:25:04 -06:00
parent 961e1ea8e8
commit 07c79d19b8
2 changed files with 15 additions and 0 deletions

View File

@ -0,0 +1,15 @@
util.AddNetworkString("kill_feed_add")
function GM:AddKillFeed(ply, inflictor, attacker)
net.Start("kill_feed_add")
net.WriteEntity(ply)
net.WriteEntity(inflictor)
net.WriteEntity(attacker)
if ply.LastDamageInfo then
net.WriteUInt(ply.LastDamageInfo:GetDamageType(), 32)
else
net.WriteUInt(0, 32)
end
net.Broadcast()
end

Binary file not shown.