Sight update to strike team admin proc. It should pick people as intended now. Can't really test it locally so who knows.

Admins can again spawn everyone as ninjas, including themselves. Inactive player checking is still there though.
A slightly updated stealth graphic for ninjas.
Fixed a lawsync() run time error.
Fixed station_explosion_cinematic() run time error.
Fixed copy_to() run time error.
Fixed dnainjector/attack() run time error.

git-svn-id: http://tgstation13.googlecode.com/svn/trunk@1667 316c924e-a436-60f5-8080-3fe189b3f50e
This commit is contained in:
noisomehollow@lycos.com
2011-06-06 06:43:59 +00:00
parent fc6d5d122a
commit 501c855aac
8 changed files with 112 additions and 122 deletions
+3 -6
View File
@@ -902,17 +902,14 @@ datum/preferences
else
character.face_icon_state = "bald"
if (underwear == 1)
character.underwear = pick(1,2,3,4,5)
else
character.underwear = 0
character.underwear = underwear == 1 ? pick(1,2,3,4,5) : 0
character.update_face()
character.update_body()
if(!safety)//To prevent run-time errors due to null datum when using randomize_appearance_for()
spawn(10)//as they should already have these set at game spawn.
if(character)
spawn(10)
if(character&&character.client)
character.client.midis = midis
character.client.ooccolor = ooccolor
character.client.be_alien = be_alien