mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-11 10:43:20 +00:00
[MIRROR] missing VV options (#11180)
Co-authored-by: Kashargul <144968721+Kashargul@users.noreply.github.com>
This commit is contained in:
committed by
GitHub
parent
2655eddc8e
commit
668bc1e4e9
@@ -968,10 +968,10 @@
|
||||
Game() // updates the main game menu
|
||||
.(href, list("f_secret"=1))
|
||||
|
||||
else if(href_list["monkeyone"])
|
||||
else if(href_list[VV_HK_TURN_MONKEY])
|
||||
if(!check_rights(R_SPAWN)) return
|
||||
|
||||
var/mob/living/carbon/human/H = locate(href_list["monkeyone"])
|
||||
var/mob/living/carbon/human/H = locate(href_list[VV_HK_TURN_MONKEY])
|
||||
if(!istype(H))
|
||||
to_chat(usr, span_filter_adminlog("This can only be used on instances of type /mob/living/carbon/human"))
|
||||
return
|
||||
@@ -1185,10 +1185,10 @@
|
||||
else
|
||||
to_chat(usr, span_filter_adminlog(span_filter_warning("Admin Rejuvinates have been disabled")))
|
||||
|
||||
else if(href_list["makeai"])
|
||||
else if(href_list[VK_HK_TURN_AI])
|
||||
if(!check_rights(R_SPAWN)) return
|
||||
|
||||
var/mob/living/carbon/human/H = locate(href_list["makeai"])
|
||||
var/mob/living/carbon/human/H = locate(href_list[VK_HK_TURN_AI])
|
||||
if(!istype(H))
|
||||
to_chat(usr, span_filter_adminlog("This can only be used on instances of type /mob/living/carbon/human"))
|
||||
return
|
||||
@@ -1197,20 +1197,20 @@
|
||||
log_admin("[key_name(usr)] AIized [key_name(H)]")
|
||||
H.AIize()
|
||||
|
||||
else if(href_list["makealien"])
|
||||
else if(href_list[VV_HK_TURN_ALIEN])
|
||||
if(!check_rights(R_SPAWN)) return
|
||||
|
||||
var/mob/living/carbon/human/H = locate(href_list["makealien"])
|
||||
var/mob/living/carbon/human/H = locate(href_list[VV_HK_TURN_ALIEN])
|
||||
if(!istype(H))
|
||||
to_chat(usr, span_filter_adminlog("This can only be used on instances of type /mob/living/carbon/human"))
|
||||
return
|
||||
|
||||
usr.client.cmd_admin_alienize(H)
|
||||
|
||||
else if(href_list["makerobot"])
|
||||
else if(href_list[VK_HK_TURN_ROBOT])
|
||||
if(!check_rights(R_SPAWN)) return
|
||||
|
||||
var/mob/living/carbon/human/H = locate(href_list["makerobot"])
|
||||
var/mob/living/carbon/human/H = locate(href_list[VK_HK_TURN_ROBOT])
|
||||
if(!istype(H))
|
||||
to_chat(usr, span_filter_adminlog("This can only be used on instances of type /mob/living/carbon/human"))
|
||||
return
|
||||
|
||||
Reference in New Issue
Block a user