mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-13 11:43:31 +00:00
Prevent protean repairs using fire and cables
Doesn't make much sense
This commit is contained in:
@@ -68,6 +68,11 @@
|
|||||||
if(!S || S.robotic < ORGAN_ROBOT || S.open == 3)
|
if(!S || S.robotic < ORGAN_ROBOT || S.open == 3)
|
||||||
return ..()
|
return ..()
|
||||||
|
|
||||||
|
//VOREStation Add - No welding nanoform limbs
|
||||||
|
if(S.robotic > ORGAN_LIFELIKE)
|
||||||
|
return ..()
|
||||||
|
//VOREStation Add End
|
||||||
|
|
||||||
if(S.organ_tag == BP_HEAD)
|
if(S.organ_tag == BP_HEAD)
|
||||||
if(H.head && istype(H.head,/obj/item/clothing/head/helmet/space))
|
if(H.head && istype(H.head,/obj/item/clothing/head/helmet/space))
|
||||||
to_chat(user, "<span class='warning'>You can't apply [src] through [H.head]!</span>")
|
to_chat(user, "<span class='warning'>You can't apply [src] through [H.head]!</span>")
|
||||||
|
|||||||
@@ -556,6 +556,11 @@ obj/structure/cable/proc/cableColor(var/colorC)
|
|||||||
if(!S || S.robotic < ORGAN_ROBOT || S.open == 3)
|
if(!S || S.robotic < ORGAN_ROBOT || S.open == 3)
|
||||||
return ..()
|
return ..()
|
||||||
|
|
||||||
|
//VOREStation Add - No welding nanoform limbs
|
||||||
|
if(S.robotic > ORGAN_LIFELIKE)
|
||||||
|
return ..()
|
||||||
|
//VOREStation Add End
|
||||||
|
|
||||||
if(S.organ_tag == BP_HEAD)
|
if(S.organ_tag == BP_HEAD)
|
||||||
if(H.head && istype(H.head,/obj/item/clothing/head/helmet/space))
|
if(H.head && istype(H.head,/obj/item/clothing/head/helmet/space))
|
||||||
to_chat(user, "<span class='warning'>You can't apply [src] through [H.head]!</span>")
|
to_chat(user, "<span class='warning'>You can't apply [src] through [H.head]!</span>")
|
||||||
|
|||||||
Reference in New Issue
Block a user