diff --git a/code/modules/mob/living/silicon/pai/examine.dm b/code/modules/mob/living/silicon/pai/examine.dm index 876b9aacf1..5d1533e306 100644 --- a/code/modules/mob/living/silicon/pai/examine.dm +++ b/code/modules/mob/living/silicon/pai/examine.dm @@ -1,7 +1,12 @@ -/mob/living/silicon/pai/examine(mob/user) - ..(user, infix = ", personal AI") +//Chompstation edit + +/mob/living/silicon/pai/examine(mob/user) + var/msg = "*---------*
This is " + if(icon) + msg += "\icon[icon] " + + msg += "[src.name], a [chassis_names[src.chassis]] personal AI" - var/msg = "" switch(src.stat) if(CONSCIOUS) if(!src.client) msg += "\nIt appears to be in stand-by mode.\n" //afk @@ -14,13 +19,17 @@ msg += "OOC Notes: \[View\]\n" // VOREStation Edit: End - msg += "\n*---------*" - if(print_flavor_text()) msg += "\n[print_flavor_text()]\n" + + msg += "\n*---------*" + if (pose) if( findtext(pose,".",lentext(pose)) == 0 && findtext(pose,"!",lentext(pose)) == 0 && findtext(pose,"?",lentext(pose)) == 0 ) pose = addtext(pose,".") //Makes sure all emotes end with a period. msg += "\nIt is [pose]" - user << msg \ No newline at end of file + user << msg + +//Chompstation edit end +// : ) \ No newline at end of file