Robot Code Overhaul (#9304)

This commit is contained in:
Geeves
2020-07-07 18:58:27 +02:00
committed by GitHub
parent 02451ba8de
commit 6616048bcc
24 changed files with 200 additions and 184 deletions

View File

@@ -52,7 +52,7 @@ obj/item/gun/energy/staff/special_check(var/mob/living/user)
new_mob = new /mob/living/simple_animal/parrot(H.loc)
new_mob.universal_speak = 1
new_mob.key = H.key
new_mob.a_intent = "harm"
new_mob.set_intent(I_HURT)
qdel(H)
sleep(20)
new_mob.say("Poly wanna cracker!")

View File

@@ -84,7 +84,7 @@
for (var/spell/S in M.spell_list)
new_mob.add_spell(new S.type)
new_mob.a_intent = "hurt"
new_mob.set_intent(I_HURT)
if(M.mind)
M.mind.transfer_to(new_mob)
else