diff --git a/beatrun/gamemodes/beatrun/content/models/new_climbanim.dx80.vtx b/beatrun/gamemodes/beatrun/content/models/new_climbanim.dx80.vtx index 24a9529..9c9c3bb 100644 Binary files a/beatrun/gamemodes/beatrun/content/models/new_climbanim.dx80.vtx and b/beatrun/gamemodes/beatrun/content/models/new_climbanim.dx80.vtx differ diff --git a/beatrun/gamemodes/beatrun/content/models/new_climbanim.dx90.vtx b/beatrun/gamemodes/beatrun/content/models/new_climbanim.dx90.vtx index 2838eeb..5ddf97a 100644 Binary files a/beatrun/gamemodes/beatrun/content/models/new_climbanim.dx90.vtx and b/beatrun/gamemodes/beatrun/content/models/new_climbanim.dx90.vtx differ diff --git a/beatrun/gamemodes/beatrun/content/models/new_climbanim.mdl b/beatrun/gamemodes/beatrun/content/models/new_climbanim.mdl index cf41798..a1903fc 100644 Binary files a/beatrun/gamemodes/beatrun/content/models/new_climbanim.mdl and b/beatrun/gamemodes/beatrun/content/models/new_climbanim.mdl differ diff --git a/beatrun/gamemodes/beatrun/content/models/new_climbanim.vvd b/beatrun/gamemodes/beatrun/content/models/new_climbanim.vvd index 725857a..70efffd 100644 Binary files a/beatrun/gamemodes/beatrun/content/models/new_climbanim.vvd and b/beatrun/gamemodes/beatrun/content/models/new_climbanim.vvd differ diff --git a/beatrun/gamemodes/beatrun/entities/entities/br_laser/shared.lua b/beatrun/gamemodes/beatrun/entities/entities/br_laser/shared.lua index aaf6f40..58a71c9 100644 --- a/beatrun/gamemodes/beatrun/entities/entities/br_laser/shared.lua +++ b/beatrun/gamemodes/beatrun/entities/entities/br_laser/shared.lua @@ -64,7 +64,7 @@ function ENT:BRCollisionFunc(ent) local dmginfo = DamageInfo() dmginfo:SetAttacker(self) - dmginfo:SetDamage(1000) + dmginfo:SetDamage(math.huge) dmginfo:SetDamageType(DMG_DISSOLVE) ent:TakeDamageInfo(dmginfo) ent:EmitSound("bigspark" .. math.random(1, 2) .. ".wav") diff --git a/beatrun/gamemodes/beatrun/gamemode/sh/SafetyRoll.lua b/beatrun/gamemodes/beatrun/gamemode/sh/SafetyRoll.lua index 5e19aca..d2a34eb 100644 --- a/beatrun/gamemodes/beatrun/gamemode/sh/SafetyRoll.lua +++ b/beatrun/gamemodes/beatrun/gamemode/sh/SafetyRoll.lua @@ -250,7 +250,7 @@ if SERVER then if speed < 800 and CurTime() < ply:GetSafetyRollKeyTime() and not ply:GetCrouchJump() and not ply:Crouching() then return 0 else - return 1000 + return math.huge end end diff --git a/beatrun/gamemodes/beatrun/gamemode/shared.lua b/beatrun/gamemodes/beatrun/gamemode/shared.lua index 144b716..0348deb 100644 --- a/beatrun/gamemodes/beatrun/gamemode/shared.lua +++ b/beatrun/gamemodes/beatrun/gamemode/shared.lua @@ -1,4 +1,4 @@ -VERSION_GLOBAL = "1.0.17" +VERSION_GLOBAL = "1.0.18" VERSION_LATEST = "" VERSION_CHECKED = false diff --git a/version.txt b/version.txt index e92964f..c678b02 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -1.0.17 \ No newline at end of file +1.0.18 \ No newline at end of file