Refactor and clean up code

This commit is contained in:
ZomgPonies
2015-05-06 19:14:22 -04:00
parent 9c011f5b25
commit cd17fa4fb4
3 changed files with 31 additions and 38 deletions
+1 -3
View File
@@ -292,9 +292,7 @@ But you can call procs that are of type /mob/living/carbon/human/proc/ for that
var/type = input("Pick the Superhero","Superhero") as null|anything in all_superheroes
var/datum/superheroes/S = all_superheroes[type]
if(S)
S.assign_genes(M)
S.assign_spells(M)
S.equip(M)
S.create(M)
log_admin("[key_name(src)] has turned [M.key] into a Superhero.")
message_admins("\blue [key_name_admin(usr)] made [key_name(M)] into a Superhero.", 1)
else