diff options
| author | Alexander Pickering <alexandermpickering@gmail.com> | 2017-08-24 20:32:34 -0400 |
|---|---|---|
| committer | Alexander Pickering <alexandermpickering@gmail.com> | 2017-08-24 20:32:34 -0400 |
| commit | 233e478e40d72a091f70f18dc6846066a4f52016 (patch) | |
| tree | cf34be714088889731736c81bd44e198c792625a /gamemode/core/combat/cl_weaponswing.lua | |
| parent | 61bc16dae5a1b61bcd237d9f0be36125829d95b1 (diff) | |
| download | artery-233e478e40d72a091f70f18dc6846066a4f52016.tar.gz artery-233e478e40d72a091f70f18dc6846066a4f52016.tar.bz2 artery-233e478e40d72a091f70f18dc6846066a4f52016.zip | |
Fix all linter warnings
Diffstat (limited to 'gamemode/core/combat/cl_weaponswing.lua')
| -rw-r--r-- | gamemode/core/combat/cl_weaponswing.lua | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/gamemode/core/combat/cl_weaponswing.lua b/gamemode/core/combat/cl_weaponswing.lua index 11557e5..ec5b954 100644 --- a/gamemode/core/combat/cl_weaponswing.lua +++ b/gamemode/core/combat/cl_weaponswing.lua @@ -1,5 +1,4 @@ local CLIENT_PAC_DIR = "artery/client/pacs" -local itm = nrequire("item.lua") local stt = nrequire("cl_state.lua") local ball function finddmgpoint(name) @@ -65,13 +64,13 @@ net.Receive("artery_doanimation",function() print("Doing animation:",animname,animtime,echoname) who:SetupBones() who:SetLuaAnimation(animname) - stt.invopen=true + stt.invopen = true timer.Simple(waittime,function() tracking = true end) timer.Simple(animtime,function() tracking = false - stt.invopen=false + stt.invopen = false print("Stopping animation",animname) who:StopLuaAnimation(animname) net.Start("artery_notifyserverofswing") |
