Moved the Ghost verb over to the special verbs tab where the rest of the "im dead wat do" verbs go

AIs should now have their borgs listed at round end

Borgs without AIs should now have their laws listed at round end

git-svn-id: http://tgstation13.googlecode.com/svn/trunk@653 316c924e-a436-60f5-8080-3fe189b3f50e
This commit is contained in:
n3ophyt3@gmail.com
2010-12-18 04:29:26 +00:00
parent 76ba540bfe
commit ef10e249e8
2 changed files with 14 additions and 1 deletions
+13 -1
View File
@@ -189,9 +189,21 @@ var/global/datum/controller/gameticker/ticker
world << "<b>[aiPlayer.name]'s laws at the end of the game were:</b>"
else
world << "<b>[aiPlayer.name]'s laws when it was deactivated were:</b>"
aiPlayer.show_laws(1)
var/robolist = "The AI's loyal minions were: "
for(var/mob/living/silicon/robot/robo in world)
if (robo.connected_ai == aiPlayer)
robolist += "[robo.name][robo.stat == 2?" (Deactivated), ":", "]"
for (var/mob/living/silicon/robot/robo in world)
if (!robo.connected_ai)
if (robo.stat != 2)
world << "<b>[robo.name] survived as an AI-less borg! Its laws were:</b>"
else
world << "<b>[robo.name] was unable to survive the rigors of being a cyborg without an AI. Its laws were:</b>"
robo.show_laws(1)
mode.declare_completion()
return 1
@@ -13,6 +13,7 @@
src.verbs += /mob/dead/observer/proc/reenter_corpse
/mob/proc/ghostize()
set category = "Special Verbs"
set name = "Ghost"
set desc = "You cannot be revived as a ghost"
if(src.client)