diff --git a/code/modules/admin/admin.dm b/code/modules/admin/admin.dm index 18b53cb1..de03fcfc 100644 --- a/code/modules/admin/admin.dm +++ b/code/modules/admin/admin.dm @@ -46,7 +46,7 @@ var/global/floorIsLava = 0 usr << "Error: you are not an admin!" return - var/body = "Options for [M.key]" + var/body = "
Options for [M.key]" body += "Options panel for [M]" if(M.client) body += " played by [M.client] " @@ -158,7 +158,7 @@ var/global/floorIsLava = 0 // DNA2 - Admin Hax if(iscarbon(M)) body += "

" - body += "DNA Blocks:
" + body += "DNA Blocks:
 12345
" var/bname for(var/block=1;block<=DNA_SE_LENGTH;block++) if(((block-1)%5)==0) @@ -177,25 +177,29 @@ var/global/floorIsLava = 0 body += {"

Rudimentary transformation:
These transformations only create a new mob type and copy stuff over. They do not take into account MMIs and similar mob-specific things. The buttons in 'Transformations' are preferred, when possible.

Observer | - \[ Alien: Drone, - Hunter, - Queen, - Sentinel, - Larva \] - Human - \[ slime: Baby, - Adult \] - Monkey | Cyborg | + Human
+ + Slime: Baby | + Adult
+ + Animal: Monkey | Cat | Runtime | Corgi | Ian | Crab | - Coffee | - \[ Construct: Armoured , - Builder , - Wraith \] + Coffee
+ + Alien: Drone | + Hunter | + Queen | + Sentinel | + Larva
+ + Construct: Armoured | + Builder | + Wraith | Shade
"} @@ -212,10 +216,10 @@ var/global/floorIsLava = 0 "} body += {"
- + "} - usr << browse(body, "window=adminplayeropts;size=550x515") + usr << browse(body, "window=adminplayeropts;size=550x600") feedback_add_details("admin_verb","SPP") //If you are copy-pasting this, ensure the 2nd parameter is unique to the new proc!
 12345