mirror of
https://github.com/PolarisSS13/Polaris.git
synced 2026-08-25 22:28:00 +01:00
to_chat replacing stream operator
This commit is contained in:
@@ -116,7 +116,7 @@
|
||||
continue
|
||||
loc_landmark = tripai
|
||||
if (!loc_landmark)
|
||||
O << "Oh god sorry we can't find an unoccupied AI spawn location, so we're spawning you on top of someone."
|
||||
to_chat(O, "Oh god sorry we can't find an unoccupied AI spawn location, so we're spawning you on top of someone.")
|
||||
for(var/obj/effect/landmark/start/sloc in landmarks_list)
|
||||
if (sloc.name == "AI")
|
||||
loc_landmark = sloc
|
||||
@@ -210,7 +210,7 @@
|
||||
new_xeno.a_intent = I_HURT
|
||||
new_xeno.key = key
|
||||
|
||||
new_xeno << "<B>You are now an alien.</B>"
|
||||
to_chat(new_xeno, "<B>You are now an alien.</B>")
|
||||
qdel(src)
|
||||
return
|
||||
|
||||
@@ -232,7 +232,7 @@
|
||||
new_corgi.a_intent = I_HURT
|
||||
new_corgi.key = key
|
||||
|
||||
new_corgi << "<B>You are now a Corgi. Yap Yap!</B>"
|
||||
to_chat(new_corgi, "<B>You are now a Corgi. Yap Yap!</B>")
|
||||
qdel(src)
|
||||
return
|
||||
|
||||
@@ -242,7 +242,7 @@
|
||||
var/mobpath = input("Which type of mob should [src] turn into?", "Choose a type") in mobtypes
|
||||
|
||||
if(!safe_animal(mobpath))
|
||||
usr << "<font color='red'>Sorry but this mob type is currently unavailable.</font>"
|
||||
to_chat(usr, "<font color='red'>Sorry but this mob type is currently unavailable.</font>")
|
||||
return
|
||||
|
||||
if(transforming)
|
||||
@@ -265,7 +265,7 @@
|
||||
new_mob.a_intent = I_HURT
|
||||
|
||||
|
||||
new_mob << "You suddenly feel more... animalistic."
|
||||
to_chat(new_mob, "You suddenly feel more... animalistic.")
|
||||
spawn()
|
||||
qdel(src)
|
||||
return
|
||||
@@ -276,14 +276,14 @@
|
||||
var/mobpath = input("Which type of mob should [src] turn into?", "Choose a type") in mobtypes
|
||||
|
||||
if(!safe_animal(mobpath))
|
||||
usr << "<font color='red'>Sorry but this mob type is currently unavailable.</font>"
|
||||
to_chat(usr, "<font color='red'>Sorry but this mob type is currently unavailable.</font>")
|
||||
return
|
||||
|
||||
var/mob/new_mob = new mobpath(src.loc)
|
||||
|
||||
new_mob.key = key
|
||||
new_mob.a_intent = I_HURT
|
||||
new_mob << "You feel more... animalistic"
|
||||
to_chat(new_mob, "You feel more... animalistic")
|
||||
|
||||
qdel(src)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user