mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-11 18:53:06 +00:00
Tweaked hunger values once more.
Added check if you already ate something but it was not yet metabolized. It's harder to overeat now. Improved the random look generator. Now it takes in account real-life statistics of skin tone and blood group distribution, and has different colors. Fixed bug that sprinkles did not metabolized in non-security body. Made rig suit to be proper space suit. Cleaned some code Made mopbucket to have 100 volume. Added radio report diagnostic verb (but with no effect for now) git-svn-id: http://tgstation13.googlecode.com/svn/trunk@551 316c924e-a436-60f5-8080-3fe189b3f50e
This commit is contained in:
@@ -109,4 +109,24 @@
|
||||
message_admins("[key_name_admin(largest_move_mob)] had the largest move delay with [largest_move_time] frames / [largest_move_time/10] seconds!", 1)
|
||||
message_admins("[key_name_admin(largest_click_mob)] had the largest click delay with [largest_click_time] frames / [largest_click_time/10] seconds!", 1)
|
||||
message_admins("world.time = [world.time]", 1)
|
||||
return
|
||||
return
|
||||
|
||||
radio_report()
|
||||
set category = "Debug"
|
||||
set name = "Radio report"
|
||||
|
||||
var/output = "<b>Radio Report</b><hr>"/*
|
||||
for (var/fq in radio_controller.frequencies)
|
||||
output += "<b>Freq: [fq]</b><br>"
|
||||
var/list/datum/radio_frequency/fqs = radio_controller.frequencies[fq]
|
||||
output += " Voice: [fqs.voice.len]<br>"
|
||||
output += " Broadcast: [fqs.broadcast.len]<br>"
|
||||
output += " Tags: <br>"
|
||||
for (var/tag in fqs.tags)
|
||||
var/list/ctag = fqs.tags[tag]
|
||||
output += " [tag]: [ctag.len]<br>"
|
||||
output += " Groups: <br>"
|
||||
for (var/group in fqs.groups)
|
||||
var/list/cgroup = fqs.groups[group]
|
||||
output += " [group]: [cgroup.len]<br>"*/
|
||||
usr << browse(output,"window=radioreport")
|
||||
|
||||
Reference in New Issue
Block a user