Skip to content
This repository was archived by the owner on Jan 5, 2024. It is now read-only.

Commit 653aed9

Browse files
committed
Misc. stuff
1 parent ed8f07d commit 653aed9

File tree

5 files changed

+4
-4
lines changed

5 files changed

+4
-4
lines changed
0 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.

Base.rte/Devices/Special/Medikit/Medikit.ini

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,8 +82,8 @@ AddDevice = HDFirearm
8282
CopyOf = Null Magazine Infinite
8383
Loudness = 0
8484
RecoilTransmission = 0
85-
RateOfFire = 75
86-
ReloadTime = 500
85+
RateOfFire = 60
86+
ReloadTime = 250
8787
FullAuto = 0
8888
FireIgnoresThis = 1
8989
MuzzleOffset = Vector

Coalition.rte/Devices/Explosives/TimedExplosive/TimedExplosiveSet.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ function Create(self)
1313
self.medBlipDelay = 250;
1414
self.maxBlipDelay = 500;
1515

16-
self.detonateDelay = 11000;
16+
self.detonateDelay = self:NumberValueExists("DetonationDelay") and self:GetNumberValue("DetonationDelay") or 11000;
1717
self.Frame = 1;
1818

1919
if TimedExplosiveTable == nil then

Imperatus.rte/Devices/Weapons/Mauler/Chain.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ function Update(self)
4949

5050
local part = CreateMOPixel("Drop Oil", "Base.rte");
5151
part.Pos = self.Pos;
52-
part.Vel = self.Vel + Vector(math.random(5), 0):RadRotate(6.28 * math.random());
52+
part.Vel = self.Vel + Vector(math.random(5), 0):RadRotate(math.pi * 2 * math.random());
5353
MovableMan:AddParticle(part);
5454
end
5555
end

0 commit comments

Comments
 (0)