April sync (#360)
* Maps and things no code/icons * helpers defines globalvars * Onclick world.dm orphaned_procs * subsystems Round vote and shuttle autocall done here too * datums * Game folder * Admin - chatter modules * clothing - mining * modular computers - zambies * client * mob level 1 * mob stage 2 + simple_animal * silicons n brains * mob stage 3 + Alien/Monkey * human mobs * icons updated * some sounds * emitter y u no commit * update tgstation.dme * compile fixes * travis fixes Also removes Fast digest mode, because reasons. * tweaks for travis Mentors are broke again Also fixes Sizeray guns * oxygen loss fix for vore code. * removes unused code * some code updates * bulk fixes * further fixes * outside things * whoops. * Maint bar ported * GLOBs.
This commit is contained in:
@@ -8,11 +8,11 @@ Contents:
|
||||
|
||||
|
||||
//ADMIN CREATE NINJA (From Player)
|
||||
/client/proc/cmd_admin_ninjafy(mob/living/carbon/human/H in player_list)
|
||||
/client/proc/cmd_admin_ninjafy(mob/living/carbon/human/H in GLOB.player_list)
|
||||
set category = null
|
||||
set name = "Make Space Ninja"
|
||||
|
||||
if (!ticker.mode)
|
||||
if (!SSticker.mode)
|
||||
alert("Wait until the game starts")
|
||||
return
|
||||
|
||||
@@ -30,7 +30,7 @@ Contents:
|
||||
H.wear_suit:randomize_param()
|
||||
spawn(0)
|
||||
H.wear_suit:ninitialize(10,H)
|
||||
ticker.mode.update_ninja_icons_added(H)
|
||||
SSticker.mode.update_ninja_icons_added(H)
|
||||
|
||||
|
||||
//ADMIN CREATE NINJA (From Ghost)
|
||||
@@ -43,13 +43,13 @@ Contents:
|
||||
if(!holder)
|
||||
to_chat(src, "Only administrators may use this command.")
|
||||
return
|
||||
if(!ticker.mode)
|
||||
if(!SSticker.mode)
|
||||
alert("The game hasn't started yet!")
|
||||
return
|
||||
if(alert("Are you sure you want to send in a space ninja?",,"Yes","No")=="No")
|
||||
return
|
||||
|
||||
var/client/C = input("Pick character to spawn as the Space Ninja", "Key", "") as null|anything in clients
|
||||
var/client/C = input("Pick character to spawn as the Space Ninja", "Key", "") as null|anything in GLOB.clients
|
||||
if(!C)
|
||||
return
|
||||
|
||||
|
||||
Reference in New Issue
Block a user