mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-11 18:53:06 +00:00
Reorganized and reworked admin_verbs.dm. Changed how Toggle Admin Verbs Visibility works.
Lowered how much running impacts nutrition. git-svn-id: http://tgstation13.googlecode.com/svn/trunk@599 316c924e-a436-60f5-8080-3fe189b3f50e
This commit is contained in:
@@ -844,7 +844,7 @@
|
||||
if (bl.z != cl.z)
|
||||
continue
|
||||
|
||||
ldat += "Bucket - <b>\[[bl.x],[bl.y]\]</b> - Water level: [B.reagents.total_volume]/50<br>"
|
||||
ldat += "Bucket - <b>\[[bl.x],[bl.y]\]</b> - Water level: [B.reagents.total_volume]/70<br>"
|
||||
|
||||
if (!ldat)
|
||||
dat += "None"
|
||||
|
||||
@@ -2146,11 +2146,11 @@ var/showadminmessages = 1
|
||||
|
||||
|
||||
/obj/admins/proc/spawn_atom(var/object as text)
|
||||
set category = "Special Verbs"
|
||||
set category = "Debug"
|
||||
set desc= "(atom path) Spawn an atom"
|
||||
set name="Spawn"
|
||||
set name= "Spawn Atom"
|
||||
|
||||
if(usr.client.holder.rank == "Coder")
|
||||
if(usr.client.holder.level >= 5)
|
||||
var/list/types = typesof(/atom)
|
||||
|
||||
var/list/matches = new()
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -229,7 +229,7 @@ But you can call procs that are of type /mob/living/carbon/human/proc/ for that
|
||||
message_admins("[key_name_admin(src)] has deleted all instances of [hsbitem].", 0)
|
||||
|
||||
/client/proc/cmd_debug_tog_aliens()
|
||||
set category = "Special Verbs"
|
||||
set category = "Server"
|
||||
set name = "Toggle Aliens"
|
||||
|
||||
aliens_allowed = !aliens_allowed
|
||||
|
||||
@@ -2,9 +2,9 @@
|
||||
. = ..()
|
||||
if(.)
|
||||
if(src.nutrition && src.stat != 2)
|
||||
src.nutrition -= HUNGER_FACTOR/2
|
||||
src.nutrition -= HUNGER_FACTOR/10
|
||||
if(src.m_intent == "run")
|
||||
src.nutrition -= HUNGER_FACTOR/2
|
||||
src.nutrition -= HUNGER_FACTOR/10
|
||||
if(src.mutations & 32 && src.m_intent == "run" && src.bodytemperature <= 360)
|
||||
src.bodytemperature += 2
|
||||
|
||||
|
||||
Reference in New Issue
Block a user