diff --git a/lua/weapons/disguiser/cl_fxfake.lua b/lua/weapons/disguiser/cl_fxfake.lua index 0ec9665..7094015 100644 --- a/lua/weapons/disguiser/cl_fxfake.lua +++ b/lua/weapons/disguiser/cl_fxfake.lua @@ -26,12 +26,11 @@ */ usermessage.Hook("disguiserShootFX", function(um) - local - hitpos = um:ReadVector(), - hitnormal = um:ReadVectorNormal(), - entity = um:ReadEntity(), - physbone = um:ReadLong(), - bFirstTimePredicted = um:ReadBool() + local hitpos = um:ReadVector() + local hitnormal = um:ReadVectorNormal() + local entity = um:ReadEntity() + local physbone = um:ReadLong() + local bFirstTimePredicted = um:ReadBool() // Player and weapon valid? if !IsValid(LocalPlayer()) || !IsValid(LocalPlayer():GetWeapon("disguiser")) then return false end