Final tweaks

This commit is contained in:
Arokha Sieyes
2018-03-17 12:33:04 -04:00
parent 99032248ab
commit 42e3261428
3 changed files with 8 additions and 4 deletions
@@ -289,7 +289,7 @@
//Record where they should go
var/atom/reform_spot = blob.drop_location()
//Mail them to nullspace
//Move them back where the blob was
forceMove(reform_spot)
//Put our owner in it (don't transfer var/mind)
@@ -281,8 +281,12 @@
var/mob/living/carbon/human/H = holder
for(var/organ in H.internal_organs)
var/obj/item/organ/O = organ
if(O.damage > 0) // Fix internal damage
// Fix internal damage
if(O.damage > 0)
O.damage = max(0,O.damage-0.1)
// If not damaged, but dead, fix it
else if(O.status & ORGAN_DEAD)
O.status &= ~ORGAN_DEAD //Unset dead if we repaired it entirely
// PAN Card
/obj/item/clothing/accessory/permit/nanotech
+2 -2
View File
@@ -816,10 +816,10 @@ Note that amputating the affected organ does in fact remove the infection from t
if(!cannot_amputate)
if(nonsolid && damage >= max_damage)
droplimb(true, DROPLIMB_BLUNT)
droplimb(TRUE, DROPLIMB_BLUNT)
//VOREStation Add Start
if(robotic >= ORGAN_NANOFORM && damage >= max_damage)
droplimb(true, DROPLIMB_BURN)
droplimb(TRUE, DROPLIMB_BURN)
//VOREStation Add End
/****************************************************