Committing for Summoner: Fixes issue 1217 - xenos being unable to hiss.

Readds ghostblob verbs.

git-svn-id: http://tgstation13.googlecode.com/svn/trunk@5787 316c924e-a436-60f5-8080-3fe189b3f50e
This commit is contained in:
d_h2005@yahoo.com
2013-02-26 03:23:48 +00:00
parent 99d892214f
commit 7effacfcad
5 changed files with 39 additions and 3 deletions
+2 -1
View File
@@ -98,7 +98,8 @@ var/global/floorIsLava = 0
body += "<A href='?src=\ref[src];makeai=\ref[M]'>Make AI</A> | "
body += "<A href='?src=\ref[src];makerobot=\ref[M]'>Make Robot</A> | "
body += "<A href='?src=\ref[src];makealien=\ref[M]'>Make Alien</A> | "
body += "<A href='?src=\ref[src];makeslime=\ref[M]'>Make slime</A> "
body += "<A href='?src=\ref[src];makeblob=\ref[M]'>Make Blob Fragment</A> | "
body += "<A href='?src=\ref[src];makeslime=\ref[M]'>Make Slime</A> "
//Simple Animals
if(isanimal(M))
+13
View File
@@ -972,6 +972,19 @@
message_admins("\blue [key_name_admin(usr)] attempting to corgize [key_name_admin(H)]", 1)
H.corgize()
else if(href_list["makeblob"])
if(!check_rights(R_SPAWN)) return
var/mob/living/carbon/human/H = locate(href_list["makeblob"])
if(!istype(H))
usr << "This can only be used on instances of type /mob/living/carbon/human"
return
log_admin("[key_name(usr)] attempting to blobize [key_name(H)]")
message_admins("\blue [key_name_admin(usr)] attempting to blobize [key_name_admin(H)]", 1)
H.blobize()
else if(href_list["forcespeech"])
if(!check_rights(R_FUN)) return