mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-08-29 06:57:42 +01:00
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