From bd0354cf7d54e43b0b242099db537260670c9778 Mon Sep 17 00:00:00 2001 From: d3athrow Date: Tue, 22 Apr 2014 13:11:28 -0500 Subject: [PATCH] Fix not being able to open the playerpanel of aliens due to a runtime. --- code/modules/admin/admin.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/admin/admin.dm b/code/modules/admin/admin.dm index a076bed08a7..fb661c0941d 100644 --- a/code/modules/admin/admin.dm +++ b/code/modules/admin/admin.dm @@ -121,7 +121,7 @@ var/global/floorIsLava = 0 body += "Animalize | " // DNA2 - Admin Hax - if(iscarbon(M)) + if(iscarbon(M) && !isalien(M)) body += "

" body += "DNA Blocks:
" var/bname
 12345