6 lines
204 B
Lua
6 lines
204 B
Lua
local function damagedbackfire( length )
|
|
local veh = net.ReadEntity()
|
|
if not IsValid(veh) or not veh.Backfire then return end
|
|
veh:Backfire( true )
|
|
end
|
|
net.Receive("simfphys_backfire", damagedbackfire)
|