mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-08-21 11:07:46 +01:00
[5654] Makes this PR Compile
This one made me cry.
This commit is contained in:
@@ -310,7 +310,7 @@
|
||||
|
||||
if(href_list["size_multiplier"])
|
||||
var/new_size = input(user, "Choose your character's size, ranging from 25% to 200%", "Character Preference") as num|null
|
||||
if(new_size && IsInRange(new_size,25,200))
|
||||
if(new_size && ISINRANGE(new_size,25,200))
|
||||
active_br.sizemult = (new_size/100)
|
||||
preview_icon = null
|
||||
return 1
|
||||
|
||||
@@ -138,7 +138,7 @@
|
||||
occupant.adjustCloneLoss(-2 * heal_rate)
|
||||
|
||||
//Premature clones may have brain damage.
|
||||
occupant.adjustBrainLoss(-(ceil(0.5*heal_rate)))
|
||||
occupant.adjustBrainLoss(-(CEILING((0.5*heal_rate), 1)))
|
||||
|
||||
//So clones don't die of oxyloss in a running pod.
|
||||
if(occupant.reagents.get_reagent_amount("inaprovaline") < 30)
|
||||
|
||||
Reference in New Issue
Block a user