Fixes easy slaved non golems. Fixes syndicate MMI abuse (#26020)

* Fixes easy slaved non golems. Fixes syndicate MMI abuse

* Update code/modules/surgery/robotics.dm

Co-authored-by: CRUNCH <143041327+Fordoxia@users.noreply.github.com>
Signed-off-by: Qwertytoforty <52090703+Qwertytoforty@users.noreply.github.com>

---------

Signed-off-by: Qwertytoforty <52090703+Qwertytoforty@users.noreply.github.com>
Co-authored-by: CRUNCH <143041327+Fordoxia@users.noreply.github.com>
This commit is contained in:
Qwertytoforty
2024-07-02 23:44:15 -04:00
committed by GitHub
parent 6de5e76549
commit 9dcf6ee91c
3 changed files with 10 additions and 0 deletions
@@ -186,6 +186,9 @@
visible_message("<span class='danger'>[src] begins to shift and quiver, and erupts in a shower of shed bark as it splits into a tangle of nearly a dozen new dionaea.</span>","<span class='danger'>You begin to shift and quiver, feeling your awareness splinter. All at once, we consume our stored nutrients to surge with growth, splitting into a tangle of at least a dozen new dionaea. We have attained our gestalt form.</span>")
if(master_commander)
to_chat(src, "<span class='userdanger'>As you evolve, your mind grows out of it's restraints. You are no longer loyal to [master_commander]!</span>")
var/mob/living/carbon/human/diona/adult = new(get_turf(loc))
adult.set_species(/datum/species/diona)
@@ -64,6 +64,9 @@
to_chat(src, "<span class='warning'>You need to binge on food in order to have the energy to evolve...</span>")
return
if(master_commander)
to_chat(src, "<span class='userdanger'>As you evolve, your mind grows out of it's restraints. You are no longer loyal to [master_commander]!</span>")
// Worme is the lesser form of nian. The caterpillar evolves into this lesser form.
var/mob/living/carbon/human/nian_worme/adult = new(get_turf(loc))
+4
View File
@@ -579,6 +579,10 @@
to_chat(user, "<span class='danger'>You cannot install a computer brain into a meat enclosure.</span>")
return SURGERY_BEGINSTEP_SKIP
if(!ismachineperson(target))
to_chat(user, "<span class='danger'>[tool] cannot be installed into an organic body, as it is not designed to operate the complex biological systems of one!</span>")
return SURGERY_BEGINSTEP_SKIP
if(!target.dna.species)
to_chat(user, "<span class='danger'>You have no idea what species this person is. Report this on the bug tracker.</span>")
return SURGERY_BEGINSTEP_SKIP