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
+3 -3
View File
@@ -249,7 +249,7 @@
qdel(t)
var/mob/living/simple_animal/corgi/new_corgi = new /mob/living/simple_animal/corgi (loc)
new_corgi.a_intent = I_HURT
new_corgi.set_intent(I_HURT)
new_corgi.key = key
to_chat(new_corgi, "<B>You are now a Corgi. Yap Yap!</B>")
@@ -282,7 +282,7 @@
var/mob/new_mob = new mobpath(src.loc)
new_mob.key = key
new_mob.a_intent = I_HURT
new_mob.set_intent(I_HURT)
to_chat(new_mob, "You suddenly feel more... animalistic.")
@@ -302,7 +302,7 @@
var/mob/new_mob = new mobpath(src.loc)
new_mob.key = key
new_mob.a_intent = I_HURT
new_mob.set_intent(I_HURT)
to_chat(new_mob, "You feel more... animalistic")
qdel(src)