File tree Expand file tree Collapse file tree 1 file changed +7
-1
lines changed
Data/Browncoats.rte/Devices/Weapons/Extinction Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -103,7 +103,9 @@ function Update(self)
103
103
end
104
104
end
105
105
106
- if self .otherHandGun or not self .parent .BGArm or not self .parent .FGArm then
106
+ local playerControlled = self .parent :IsPlayerControlled ()
107
+
108
+ if self .otherHandGun or not self .parent .BGArm or not self .parent .FGArm or not playerControlled then
107
109
self .FullAuto = false ;
108
110
if self .fanFire then
109
111
-- self.FullAuto = false;
@@ -115,9 +117,13 @@ function Update(self)
115
117
self .ShakeRange = self .origShakeRange ;
116
118
self .SharpShakeRange = self .origSharpShakeRange ;
117
119
end
120
+ if not playerControlled then
121
+ self .RateOfFire = 70 ;
122
+ end
118
123
else
119
124
self .FullAuto = true ;
120
125
self .reloadDelay = 150 ;
126
+ self .RateOfFire = 300 ;
121
127
end
122
128
else
123
129
self .parent = nil ;
You can’t perform that action at this time.
0 commit comments