mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-08-29 06:58:30 +01:00
Makes borg chargers clear rads like cryocells
Equivalent of a cryocell for a cyborg.
This commit is contained in:
@@ -104,8 +104,9 @@
|
||||
cell.use(7000/450*10)
|
||||
|
||||
// And clear up radiation
|
||||
if(H.radiation > 0)
|
||||
H.radiation = max(H.radiation - rand(5, 15), 0)
|
||||
if(H.radiation > 0 || H.accumulated_rads > 0)
|
||||
H.radiation = max(H.radiation - 25, 0)
|
||||
H.accumulated_rads = max(H.accumulated_rads - 25, 0)
|
||||
|
||||
if(H.wearing_rig) // stepping into a borg charger to charge your rig and fix your shit
|
||||
var/obj/item/weapon/rig/wornrig = H.get_rig()
|
||||
|
||||
Reference in New Issue
Block a user