mirror of
https://github.com/HaodongMo/ARC-9.git
synced 2025-03-04 03:02:58 -05:00
Fixed Palindrone's stupid shotgun bug
This commit is contained in:
parent
60925a48db
commit
542ef3d2a3
16
addon.json
Normal file
16
addon.json
Normal file
@ -0,0 +1,16 @@
|
||||
{
|
||||
"title": "ARC9",
|
||||
"description": "",
|
||||
"type": "weapon",
|
||||
"tags": [
|
||||
"roleplay",
|
||||
"realism"
|
||||
],
|
||||
"ignore": [
|
||||
".git/*",
|
||||
"README.md",
|
||||
".py/*",
|
||||
".blend/*",
|
||||
".pdn/*"
|
||||
]
|
||||
}
|
@ -306,7 +306,7 @@ function SWEP:EndReload()
|
||||
anim = banim
|
||||
|
||||
local minprogress = (self:GetAnimationEntry(anim) or {}).MinProgress or 0.75
|
||||
minprogress = math.min(minprogress, 1)
|
||||
minprogress = math.min(minprogress, 0.99)
|
||||
|
||||
local t = self:PlayAnimation(anim, self:GetProcessedValue("ReloadTime", 1), true)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user