mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-08-26 13:37:58 +01:00
Merge pull request #13718 from Crazylemon64/note-to-self-keep-rerunning-travis
Fixes use of a no longer existent helper that prevented compilation
This commit is contained in:
@@ -108,8 +108,8 @@
|
||||
return
|
||||
|
||||
if(damage_protection)
|
||||
brute = Clamp(brute - damage_protection, 0, brute)
|
||||
burn = Clamp(burn - damage_protection, 0, burn)
|
||||
brute = clamp(brute - damage_protection, 0, brute)
|
||||
burn = clamp(burn - damage_protection, 0, burn)
|
||||
|
||||
var/list/datum/robot_component/parts = get_damageable_components()
|
||||
|
||||
|
||||
Reference in New Issue
Block a user