Compare commits

..

1 commit

Author SHA1 Message Date
LostTrackpad
bef3d669b3
Merge 2d46b1fc30 into 7fc975dc42 2024-11-05 17:27:12 +05:00
8 changed files with 4 additions and 4 deletions

View file

@ -64,7 +64,7 @@ function ENT:BRCollisionFunc(ent)
local dmginfo = DamageInfo() local dmginfo = DamageInfo()
dmginfo:SetAttacker(self) dmginfo:SetAttacker(self)
dmginfo:SetDamage(math.huge) dmginfo:SetDamage(1000)
dmginfo:SetDamageType(DMG_DISSOLVE) dmginfo:SetDamageType(DMG_DISSOLVE)
ent:TakeDamageInfo(dmginfo) ent:TakeDamageInfo(dmginfo)
ent:EmitSound("bigspark" .. math.random(1, 2) .. ".wav") ent:EmitSound("bigspark" .. math.random(1, 2) .. ".wav")

View file

@ -250,7 +250,7 @@ if SERVER then
if speed < 800 and CurTime() < ply:GetSafetyRollKeyTime() and not ply:GetCrouchJump() and not ply:Crouching() then if speed < 800 and CurTime() < ply:GetSafetyRollKeyTime() and not ply:GetCrouchJump() and not ply:Crouching() then
return 0 return 0
else else
return math.huge return 1000
end end
end end

View file

@ -1,4 +1,4 @@
VERSION_GLOBAL = "1.0.18" VERSION_GLOBAL = "1.0.17"
VERSION_LATEST = "" VERSION_LATEST = ""
VERSION_CHECKED = false VERSION_CHECKED = false

View file

@ -1 +1 @@
1.0.18 1.0.17