From 94b33ed771a692adf5716adc192b494a2c6710ed Mon Sep 17 00:00:00 2001 From: Toast Date: Tue, 3 Dec 2019 19:32:04 -0500 Subject: [PATCH 01/11] Revert "Revert "This is painful"" This reverts commit 95e35dc714ec059af1ba4f6355f717d810b87fa6. --- code/__DEFINES/logging.dm | 1 + code/__DEFINES/machines.dm | 4 + code/__HELPERS/_logging.dm | 4 + code/_globalvars/logging.dm | 2 + .../configuration/entries/general.dm | 2 + code/datums/dna.dm | 2 +- code/game/machinery/cloning.dm | 82 ++++++++----- code/game/machinery/computer/cloning.dm | 113 +++++++++++++----- code/game/machinery/exp_cloner.dm | 6 +- code/game/world.dm | 1 + config/config.txt | 3 + 11 files changed, 157 insertions(+), 63 deletions(-) diff --git a/code/__DEFINES/logging.dm b/code/__DEFINES/logging.dm index 8548b2be..cabc67f6 100644 --- a/code/__DEFINES/logging.dm +++ b/code/__DEFINES/logging.dm @@ -35,6 +35,7 @@ #define LOG_GAME (1 << 12) #define LOG_ADMIN_PRIVATE (1 << 13) #define LOG_ASAY (1 << 14) +#define LOG_CLONING (1 << 15) //Individual logging panel pages #define INDIVIDUAL_ATTACK_LOG (LOG_ATTACK) diff --git a/code/__DEFINES/machines.dm b/code/__DEFINES/machines.dm index ec719794..0edb4239 100644 --- a/code/__DEFINES/machines.dm +++ b/code/__DEFINES/machines.dm @@ -100,6 +100,10 @@ #define NUKE_ON_TIMING 2 #define NUKE_ON_EXPLODING 3 +//cloning defines. These are flags. +#define CLONING_SUCCESS (1<<0) +#define CLONING_DELETE_RECORD (1<<1) + //these flags are used to tell the DNA modifier if a plant gene cannot be extracted or modified. #define PLANT_GENE_REMOVABLE (1<<0) #define PLANT_GENE_EXTRACTABLE (1<<1) diff --git a/code/__HELPERS/_logging.dm b/code/__HELPERS/_logging.dm index 30740956..b6b4efa0 100644 --- a/code/__HELPERS/_logging.dm +++ b/code/__HELPERS/_logging.dm @@ -58,6 +58,10 @@ if (CONFIG_GET(flag/log_game)) WRITE_LOG(GLOB.world_game_log, "GAME: [text]") +/proc/log_cloning(text, mob/initiator) + if(CONFIG_GET(flag/log_cloning)) + WRITE_LOG(GLOB.world_cloning_log, "CLONING: [text]") + /proc/log_access(text) if (CONFIG_GET(flag/log_access)) WRITE_LOG(GLOB.world_game_log, "ACCESS: [text]") diff --git a/code/_globalvars/logging.dm b/code/_globalvars/logging.dm index deffd25b..bf4ff55f 100644 --- a/code/_globalvars/logging.dm +++ b/code/_globalvars/logging.dm @@ -26,6 +26,8 @@ GLOBAL_VAR(query_debug_log) GLOBAL_PROTECT(query_debug_log) GLOBAL_VAR(world_job_debug_log) GLOBAL_PROTECT(world_job_debug_log) +GLOBAL_VAR(world_cloning_log) +GLOBAL_PROTECT(world_cloning_log) GLOBAL_LIST_EMPTY(bombers) GLOBAL_PROTECT(bombers) diff --git a/code/controllers/configuration/entries/general.dm b/code/controllers/configuration/entries/general.dm index 9a1a083b..ccfa668b 100644 --- a/code/controllers/configuration/entries/general.dm +++ b/code/controllers/configuration/entries/general.dm @@ -39,6 +39,8 @@ /datum/config_entry/flag/log_game // log game events +/datum/config_entry/flag/log_cloning // log cloning actions. + /datum/config_entry/flag/log_vote // log voting /datum/config_entry/flag/log_whisper // log client whisper diff --git a/code/datums/dna.dm b/code/datums/dna.dm index 43ec9e54..466a5406 100644 --- a/code/datums/dna.dm +++ b/code/datums/dna.dm @@ -371,7 +371,7 @@ updateappearance(icon_update=0) if(LAZYLEN(mutation_index)) - dna.mutation_index = mutation_index + dna.mutation_index = mutation_index.Copy() domutcheck() if(mrace || newfeatures || ui) diff --git a/code/game/machinery/cloning.dm b/code/game/machinery/cloning.dm index 855ede0e..e4f9d292 100644 --- a/code/game/machinery/cloning.dm +++ b/code/game/machinery/cloning.dm @@ -74,6 +74,23 @@ if(heal_level > 100) heal_level = 100 +/obj/machinery/clonepod/attack_hand(mob/user) + . = ..() + if(.) + return + user.examinate(src) + +/obj/machinery/clonepod/attack_ai(mob/user) + return attack_hand(user) + +/obj/machinery/clonepod/examine(mob/user) + . = ..() + . += "The linking device can be scanned with a multitool." + if(in_range(user, src) || isobserver(user)) + . += "The status display reads: Cloning speed at [speed_coeff*50]%.
Predicted amount of cellular damage: [100-heal_level]%.
" + if(efficiency > 5) + . += "Pod has been upgraded to support autoprocessing and apply beneficial mutations." + //The return of data disks?? Just for transferring between genetics machine/cloning machine. //TO-DO: Make the genetics machine accept them. /obj/item/disk/data @@ -129,41 +146,42 @@ return examine(user) //Start growing a human clone in the pod! -/obj/machinery/clonepod/proc/growclone(ckey, clonename, ui, mutation_index, mindref, datum/species/mrace, list/features, factions, list/quirks) +/obj/machinery/clonepod/proc/growclone(clonename, ui, mutation_index, mindref, last_death, blood_type, datum/species/mrace, list/features, factions, list/quirks, datum/bank_account/insurance, list/traumas, empty) if(panel_open) return FALSE if(mess || attempting) return FALSE - clonemind = locate(mindref) in SSticker.minds - if(!istype(clonemind)) //not a mind - return FALSE - if(!QDELETED(clonemind.current)) - if(clonemind.current.stat != DEAD) //mind is associated with a non-dead body + if(!empty) //Doesn't matter if we're just making a copy + clonemind = locate(mindref) in SSticker.minds + if(!istype(clonemind)) //not a mind return FALSE - if(clonemind.current.suiciding) // Mind is associated with a body that is suiciding. +// if(clonemind.last_death != last_death) //The soul has advanced, the record has not. +// return FALSE + if(!QDELETED(clonemind.current)) + if(clonemind.current.stat != DEAD) //mind is associated with a non-dead body + return NONE + if(clonemind.current.suiciding) // Mind is associated with a body that is suiciding. + return NONE + if(!clonemind.active) + // get_ghost() will fail if they're unable to reenter their body + var/mob/dead/observer/G = clonemind.get_ghost() + if(!G) + return NONE + if(G.suiciding) // The ghost came from a body that is suiciding. + return NONE + if(clonemind.damnation_type) //Can't clone the damned. + INVOKE_ASYNC(src, .proc/horrifyingsound) + mess = TRUE + icon_state = "pod_g" + update_icon() return FALSE - if(clonemind.active) //somebody is using that mind - if( ckey(clonemind.key)!=ckey ) - return FALSE - else - // get_ghost() will fail if they're unable to reenter their body - var/mob/dead/observer/G = clonemind.get_ghost() - if(!G) - return FALSE - if(G.suiciding) // The ghost came from a body that is suiciding. - return FALSE - if(clonemind.damnation_type) //Can't clone the damned. - INVOKE_ASYNC(src, .proc/horrifyingsound) - mess = TRUE - update_icon() - return FALSE attempting = TRUE //One at a time!! countdown.start() var/mob/living/carbon/human/H = new /mob/living/carbon/human(src) - H.hardset_dna(ui, mutation_index, H.real_name, null, mrace, features) + H.hardset_dna(ui, mutation_index, H.real_name, blood_type, mrace, features) if(prob(50 - efficiency*10)) //Chance to give a bad mutation. H.easy_randmut(NEGATIVE+MINOR_NEGATIVE) //100% bad mutation. Can be cured with mutadone. @@ -184,15 +202,16 @@ ADD_TRAIT(H, TRAIT_NOCRITDAMAGE, "cloning") H.Unconscious(80) - clonemind.transfer_to(H) + if(!empty) + clonemind.transfer_to(H) - if(grab_ghost_when == CLONER_FRESH_CLONE) - H.grab_ghost() - to_chat(H, "Consciousness slowly creeps over you as your body regenerates.
So this is what cloning feels like?
") + if(grab_ghost_when == CLONER_FRESH_CLONE) + H.grab_ghost() + to_chat(H, "Consciousness slowly creeps over you as your body regenerates.
So this is what cloning feels like?
") - if(grab_ghost_when == CLONER_MATURE_CLONE) - H.ghostize(TRUE) //Only does anything if they were still in their old body and not already a ghost - to_chat(H.get_ghost(TRUE), "Your body is beginning to regenerate in a cloning pod. You will become conscious when it is complete.") + if(grab_ghost_when == CLONER_MATURE_CLONE) + H.ghostize(TRUE) //Only does anything if they were still in their old body and not already a ghost + to_chat(H.get_ghost(TRUE), "Your body is beginning to regenerate in a cloning pod. You will become conscious when it is complete.") if(H) H.faction |= factions @@ -381,6 +400,7 @@ unattached_flesh.Cut() occupant = null + clonemind = null /obj/machinery/clonepod/proc/malfunction() var/mob/living/mob_occupant = occupant @@ -391,7 +411,7 @@ mess = TRUE maim_clone(mob_occupant) //Remove every bit that's grown back so far to drop later, also destroys bits that haven't grown yet update_icon() - if(mob_occupant.mind != clonemind) + if(clonemind && mob_occupant.mind != clonemind) clonemind.transfer_to(mob_occupant) mob_occupant.grab_ghost() // We really just want to make you suffer. flash_color(mob_occupant, flash_color="#960000", flash_time=100) diff --git a/code/game/machinery/computer/cloning.dm b/code/game/machinery/computer/cloning.dm index 039152f5..ca5e15d1 100644 --- a/code/game/machinery/computer/cloning.dm +++ b/code/game/machinery/computer/cloning.dm @@ -39,7 +39,7 @@ if(pods) for(var/P in pods) var/obj/machinery/clonepod/pod = P - if(pod.occupant && pod.clonemind == mind) + if(pod.occupant && mind && pod.clonemind == mind) return null if(pod.is_operational() && !(pod.occupant || pod.mess)) return pod @@ -60,6 +60,9 @@ else if(!. && pod.is_operational() && !(pod.occupant || pod.mess) && pod.efficiency > 5) . = pod +/proc/grow_clone_from_record(obj/machinery/clonepod/pod, datum/data/record/R, empty) + return pod.growclone(R.fields["name"], R.fields["UI"], R.fields["SE"], R.fields["mindref"], R.fields["last_death"], R.fields["blood_type"], R.fields["mrace"], R.fields["features"], R.fields["factions"], R.fields["quirks"], R.fields["bank_account"], R.fields["traumas"], empty) + /obj/machinery/computer/cloning/process() if(!(scanner && LAZYLEN(pods) && autoprocess)) return @@ -76,8 +79,11 @@ if(pod.occupant) continue //how though? - if(pod.growclone(R.fields["ckey"], R.fields["name"], R.fields["UI"], R.fields["SE"], R.fields["mind"], R.fields["mrace"], R.fields["features"], R.fields["factions"], R.fields["quirks"])) + var/result = grow_clone_from_record(pod, R) + if(result & CLONING_SUCCESS) temp = "[R.fields["name"]] => Cloning cycle in progress..." + log_cloning("Cloning of [key_name(R.fields["mindref"])] automatically started via autoprocess - [src] at [AREACOORD(src)]. Pod: [pod] at [AREACOORD(pod)].") + if(result & CLONING_DELETE_RECORD) records -= R /obj/machinery/computer/cloning/proc/updatemodules(findfirstcloner) @@ -201,6 +207,7 @@ if(scanner_occupant) dat += "Start Scan" + dat += "Body-Only Scan" dat += "
[src.scanner.locked ? "Unlock Scanner" : "Lock Scanner"]" else dat += "Start Scan" @@ -228,8 +235,11 @@ if (!src.active_record) dat += "Record not found." else - dat += "

[src.active_record.fields["name"]]

" - dat += "Scan ID [src.active_record.fields["id"]] Clone
" + var/body_only = active_record.fields["body_only"] + dat += "

[active_record.fields["name"]][body_only ? " - BODY-ONLY" : ""]

" + dat += "Scan ID [active_record.fields["id"]] \ + [!body_only ? "Clone" : "" ]\ + Empty Clone
" var/obj/item/implant/health/H = locate(src.active_record.fields["imp"]) @@ -297,13 +307,14 @@ else if ((href_list["scan"]) && !isnull(scanner) && scanner.is_operational()) scantemp = "" + var/body_only = href_list["body_only"] loading = 1 src.updateUsrDialog() playsound(src, 'sound/machines/terminal_prompt.ogg', 50, 0) say("Initiating scan...") spawn(20) - src.scan_occupant(scanner.occupant) + src.scan_occupant(scanner.occupant, usr, body_only) loading = 0 src.updateUsrDialog() @@ -336,9 +347,23 @@ if ((!src.active_record) || (src.menu < 3)) return if (src.menu == 3) //If we are viewing a record, confirm deletion - src.temp = "Delete record?" - src.menu = 4 - playsound(src, 'sound/machines/terminal_prompt.ogg', 50, 0) + var/has_access = FALSE + if(ishuman(usr)) + var/mob/living/carbon/human/user = usr + var/obj/item/card/id/C = user.get_idcard(TRUE) + if(C) + if(check_access(C)) + has_access = TRUE + if(active_record.fields["body_only"]) //Body-only scans are not as important and can be deleted freely + has_access = TRUE + if(has_access) + temp = "Delete record?" + menu = 4 + playsound(src, 'sound/machines/terminal_prompt.ogg', 50, 0) + else + temp = "Access Denied" + menu = 2 + playsound(src, 'sound/machines/terminal_prompt_deny.ogg', 50, 0) else if (src.menu == 4) var/obj/item/card/id/C = usr.get_active_held_item() @@ -400,9 +425,14 @@ else if (href_list["clone"]) var/datum/data/record/C = find_record("id", href_list["clone"], records) + var/empty = href_list["empty"] //Look for that player! They better be dead! if(C) + if(C.fields["body_only"] && !empty) + temp = "Cannot initiate regular cloning with body-only scans." + playsound(src, 'sound/machines/terminal_prompt_deny.ogg', 50, 0) var/obj/machinery/clonepod/pod = GetAvailablePod() + var/success = FALSE //Can't clone without someone to clone. Or a pod. Or if the pod is busy. Or full of gibs. if(!LAZYLEN(pods)) temp = "No Clonepods detected." @@ -410,20 +440,31 @@ else if(!pod) temp = "No Clonepods available." playsound(src, 'sound/machines/terminal_prompt_deny.ogg', 50, 0) - else if(!CONFIG_GET(flag/revival_cloning)) + else if(!CONFIG_GET(flag/revival_cloning) && !empty) temp = "Unable to initiate cloning cycle." playsound(src, 'sound/machines/terminal_prompt_deny.ogg', 50, 0) else if(pod.occupant) temp = "Cloning cycle already in progress." playsound(src, 'sound/machines/terminal_prompt_deny.ogg', 50, 0) - else if(pod.growclone(C.fields["ckey"], C.fields["name"], C.fields["UI"], C.fields["SE"], C.fields["mind"], C.fields["mrace"], C.fields["features"], C.fields["factions"], C.fields["quirks"])) - temp = "[C.fields["name"]] => Cloning cycle in progress..." - playsound(src, 'sound/machines/terminal_prompt_confirm.ogg', 50, 0) - records.Remove(C) - if(active_record == C) - active_record = null - menu = 1 else + var/result = grow_clone_from_record(pod, C, empty) + if(result & CLONING_SUCCESS) + temp = "[C.fields["name"]] => Cloning cycle in progress..." + playsound(src, 'sound/machines/terminal_prompt_confirm.ogg', 50, 0) + records.Remove(C) + if(active_record == C) + active_record = null + menu = 1 + success = TRUE + if(!empty) + log_cloning("[key_name(usr)] initiated cloning of [key_name(C.fields["mindref"])] via [src] at [AREACOORD(src)]. Pod: [pod] at [AREACOORD(pod)].") + else + log_cloning("[key_name(usr)] initiated EMPTY cloning of [key_name(C.fields["mindref"])] via [src] at [AREACOORD(src)]. Pod: [pod] at [AREACOORD(pod)].") + if(result & CLONING_DELETE_RECORD) + if(active_record == C) + active_record = null + + if(!success) temp = "[C.fields["name"]] => Initialisation failure." playsound(src, 'sound/machines/terminal_prompt_deny.ogg', 50, 0) @@ -439,9 +480,11 @@ src.updateUsrDialog() return -/obj/machinery/computer/cloning/proc/scan_occupant(occupant) +/obj/machinery/computer/cloning/proc/scan_occupant(occupant, mob/M, body_only) var/mob/living/mob_occupant = get_mob_or_brainmob(occupant) var/datum/dna/dna + + // Do not use unless you know what they are. if(ishuman(mob_occupant)) var/mob/living/carbon/C = mob_occupant dna = C.has_dna() @@ -453,7 +496,7 @@ scantemp = "Unable to locate valid genetic data." playsound(src, 'sound/machines/terminal_prompt_deny.ogg', 50, 0) return - if(mob_occupant.suiciding || mob_occupant.hellbound) + if(!body_only && (mob_occupant.suiciding || mob_occupant.hellbound)) scantemp = "Subject's brain is not responding to scanning stimuli." playsound(src, 'sound/machines/terminal_prompt_deny.ogg', 50, 0) return @@ -461,7 +504,7 @@ scantemp = "Subject no longer contains the fundamental materials required to create a living clone." playsound(src, 'sound/machines/terminal_alert.ogg', 50, 0) return - if ((!mob_occupant.ckey) || (!mob_occupant.client)) + if (!body_only && isnull(mob_occupant.mind)) scantemp = "Mental interface failure." playsound(src, 'sound/machines/terminal_prompt_deny.ogg', 50, 0) return @@ -490,6 +533,7 @@ R.fields["blood_type"] = dna.blood_type R.fields["features"] = dna.features R.fields["factions"] = mob_occupant.faction + R.fields["body_only"] = body_only R.fields["quirks"] = list() for(var/V in mob_occupant.roundstart_quirks) var/datum/quirk/T = V @@ -498,17 +542,30 @@ if (!isnull(mob_occupant.mind)) //Save that mind so traitors can continue traitoring after cloning. R.fields["mind"] = "[REF(mob_occupant.mind)]" - //Add an implant if needed - var/obj/item/implant/health/imp - for(var/obj/item/implant/health/HI in mob_occupant.implants) - imp = HI - break - if(!imp) - imp = new /obj/item/implant/health(mob_occupant) - imp.implant(mob_occupant) - R.fields["imp"] = "[REF(imp)]" + if(!body_only) + //Add an implant if needed + var/obj/item/implant/health/imp + for(var/obj/item/implant/health/HI in mob_occupant.implants) + imp = HI + break + if(!imp) + imp = new /obj/item/implant/health(mob_occupant) + imp.implant(mob_occupant) + R.fields["imp"] = "[REF(imp)]" + var/datum/data/record/old_record = find_record("mindref", REF(mob_occupant.mind), records) + if(body_only) + old_record = find_record("UE", dna.unique_enzymes, records) //Body-only records cannot be identified by mind, so we use the DNA + if(old_record && ((old_record.fields["UI"] != dna.uni_identity) || (!old_record.fields["body_only"]))) //Never overwrite a mind-and-body record if it exists + old_record = null + if(old_record) + records -= old_record + scantemp = "Record updated." + else + scantemp = "Subject successfully scanned." src.records += R + log_cloning("[M ? key_name(M) : "Autoprocess"] added the [body_only ? "body-only " : ""]record of [key_name(mob_occupant)] to [src] at [AREACOORD(src)].") + var/obj/item/circuitboard/computer/cloning/board = circuit board.records = records scantemp = "Subject successfully scanned." diff --git a/code/game/machinery/exp_cloner.dm b/code/game/machinery/exp_cloner.dm index baa7ed27..d5388035 100644 --- a/code/game/machinery/exp_cloner.dm +++ b/code/game/machinery/exp_cloner.dm @@ -9,7 +9,7 @@ internal_radio = FALSE //Start growing a human clone in the pod! -/obj/machinery/clonepod/experimental/growclone(ckey, clonename, ui, se, datum/species/mrace, list/features, factions) +/obj/machinery/clonepod/experimental/growclone(clonename, ui, mutation_index, mindref, last_death, blood_type, datum/species/mrace, list/features, factions, list/quirks, datum/bank_account/insurance) if(panel_open) return FALSE if(mess || attempting) @@ -20,7 +20,7 @@ var/mob/living/carbon/human/H = new /mob/living/carbon/human(src) - H.hardset_dna(ui, se, H.real_name, null, mrace, features) + H.hardset_dna(ui, mutation_index, H.real_name, blood_type, mrace, features) if(efficiency > 2) var/list/unclean_mutations = (GLOB.not_good_mutations|GLOB.bad_mutations) @@ -292,7 +292,7 @@ temp = "Cloning cycle already in progress." playsound(src, 'sound/machines/terminal_prompt_deny.ogg', 50, 0) else - pod.growclone(null, mob_occupant.real_name, dna.uni_identity, dna.mutation_index, clone_species, dna.features, mob_occupant.faction) + pod.growclone(mob_occupant.real_name, dna.uni_identity, dna.mutation_index, null, null, dna.blood_type, clone_species, dna.features, mob_occupant.faction) temp = "[mob_occupant.real_name] => Cloning data sent to pod." playsound(src, 'sound/machines/terminal_prompt_confirm.ogg', 50, 0) diff --git a/code/game/world.dm b/code/game/world.dm index e9789bc4..958ef849 100644 --- a/code/game/world.dm +++ b/code/game/world.dm @@ -100,6 +100,7 @@ GLOBAL_VAR(restart_counter) GLOB.picture_log_directory = "data/picture_logs/[override_dir]" GLOB.world_game_log = "[GLOB.log_directory]/game.log" + GLOB.world_cloning_log = "[GLOB.log_directory]/cloning.log" GLOB.world_attack_log = "[GLOB.log_directory]/attack.log" GLOB.world_pda_log = "[GLOB.log_directory]/pda.log" GLOB.world_telecomms_log = "[GLOB.log_directory]/telecomms.log" diff --git a/config/config.txt b/config/config.txt index 5dda144c..819bc01a 100644 --- a/config/config.txt +++ b/config/config.txt @@ -146,6 +146,9 @@ LOG_MANIFEST ## Enable logging pictures # LOG_PICTURES +## log cloning actions +LOG_CLONING + ##Log camera pictures - Must have picture logging enabled PICTURE_LOGGING_CAMERA From 1aecaa24fd78af86599984421fec35f216820313 Mon Sep 17 00:00:00 2001 From: Toast Date: Tue, 3 Dec 2019 19:41:51 -0500 Subject: [PATCH 02/11] Crafting mind runes --- code/datums/mind.dm | 3 +++ code/game/machinery/cloning.dm | 4 ++-- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/code/datums/mind.dm b/code/datums/mind.dm index f633b5cf..5dd0b34d 100644 --- a/code/datums/mind.dm +++ b/code/datums/mind.dm @@ -62,6 +62,9 @@ var/unconvertable = FALSE var/late_joiner = FALSE + var/last_death = 0 + + var/force_escaped = FALSE // Set by Into The Sunset command of the shuttle manipulator var/list/learned_recipes //List of learned recipe TYPES. diff --git a/code/game/machinery/cloning.dm b/code/game/machinery/cloning.dm index e4f9d292..398895d6 100644 --- a/code/game/machinery/cloning.dm +++ b/code/game/machinery/cloning.dm @@ -155,8 +155,8 @@ clonemind = locate(mindref) in SSticker.minds if(!istype(clonemind)) //not a mind return FALSE -// if(clonemind.last_death != last_death) //The soul has advanced, the record has not. -// return FALSE + if(clonemind.last_death != last_death) //The soul has advanced, the record has not. + return FALSE if(!QDELETED(clonemind.current)) if(clonemind.current.stat != DEAD) //mind is associated with a non-dead body return NONE From 1adb79deaab8d63fed263ea9366b2976d9002aeb Mon Sep 17 00:00:00 2001 From: Toast Date: Tue, 3 Dec 2019 20:08:52 -0500 Subject: [PATCH 03/11] Update cloning pod and atom for multitool --- code/game/atoms.dm | 8 +++++++ code/game/machinery/cloning.dm | 41 ++++++++++++++++++++++++++++++---- 2 files changed, 45 insertions(+), 4 deletions(-) diff --git a/code/game/atoms.dm b/code/game/atoms.dm index 9e8756bb..78953609 100644 --- a/code/game/atoms.dm +++ b/code/game/atoms.dm @@ -598,6 +598,14 @@ /atom/proc/multitool_act(mob/living/user, obj/item/I) return +///Check if the multitool has an item in it's data buffer +/atom/proc/multitool_check_buffer(user, obj/item/I, silent = FALSE) + if(!istype(I, /obj/item/multitool)) + if(user && !silent) + to_chat(user, "[I] has no data buffer!") + return FALSE + return TRUE + /atom/proc/screwdriver_act(mob/living/user, obj/item/I) SEND_SIGNAL(src, COMSIG_ATOM_SCREWDRIVER_ACT, user, I) diff --git a/code/game/machinery/cloning.dm b/code/game/machinery/cloning.dm index 398895d6..83f367c7 100644 --- a/code/game/machinery/cloning.dm +++ b/code/game/machinery/cloning.dm @@ -53,7 +53,10 @@ update_icon() /obj/machinery/clonepod/Destroy() + var/mob/living/mob_occupant = occupant go_out() + if(mob_occupant) + log_cloning("[key_name(mob_occupant)] ejected from [src] at [AREACOORD(src)] due to Destroy().") QDEL_NULL(radio) QDEL_NULL(countdown) if(connected) @@ -151,6 +154,7 @@ return FALSE if(mess || attempting) return FALSE + if(!empty) //Doesn't matter if we're just making a copy clonemind = locate(mindref) in SSticker.minds if(!istype(clonemind)) //not a mind @@ -183,8 +187,16 @@ H.hardset_dna(ui, mutation_index, H.real_name, blood_type, mrace, features) - if(prob(50 - efficiency*10)) //Chance to give a bad mutation. - H.easy_randmut(NEGATIVE+MINOR_NEGATIVE) //100% bad mutation. Can be cured with mutadone. + if(!HAS_TRAIT(H, TRAIT_RADIMMUNE))//dont apply mutations if the species is Mutation proof. + if(efficiency > 2) + var/list/unclean_mutations = (GLOB.not_good_mutations|GLOB.bad_mutations) + H.dna.remove_mutation_group(unclean_mutations) + if(efficiency > 5 && prob(20)) + H.easy_randmut(POSITIVE) + if(efficiency < 3 && prob(50)) + var/mob/M = H.easy_randmut(NEGATIVE+MINOR_NEGATIVE) + if(ismob(M)) + H = M H.silent = 20 //Prevents an extreme edge case where clones could speak if they said something at exactly the right moment. occupant = H @@ -234,16 +246,20 @@ if(!is_operational()) //Autoeject if power is lost if(mob_occupant) go_out() + log_cloning("[key_name(mob_occupant)] ejected from [src] at [AREACOORD(src)] due to power loss.") + mob_occupant.apply_vore_prefs() + connected_message("Clone Ejected: Loss of power.") else if(mob_occupant && (mob_occupant.loc == src)) - if((mob_occupant.stat == DEAD) || (mob_occupant.suiciding) || mob_occupant.hellbound) //Autoeject corpses and suiciding dudes. + if(mob_occupant && (mob_occupant.stat == DEAD) || (mob_occupant.suiciding) || mob_occupant.hellbound) //Autoeject corpses and suiciding dudes. connected_message("Clone Rejected: Deceased.") if(internal_radio) SPEAK("The cloning has been \ aborted due to unrecoverable tissue failure.") go_out() + log_cloning("[key_name(mob_occupant)] ejected from [src] at [AREACOORD(src)] after suiciding.") mob_occupant.apply_vore_prefs() else if(mob_occupant.cloneloss > (100 - heal_level)) @@ -291,10 +307,13 @@ BP.attach_limb(mob_occupant) go_out() + log_cloning("[key_name(mob_occupant)] completed cloning cycle in [src] at [AREACOORD(src)].") mob_occupant.apply_vore_prefs() else if (!mob_occupant || mob_occupant.loc != src) occupant = null + if (!mess && !panel_open) + icon_state = "pod_0" use_power(200) update_icon() @@ -309,6 +328,8 @@ return if(istype(W, /obj/item/multitool)) + if(!multitool_check_buffer(user, W)) + return var/obj/item/multitool/P = W if(istype(P.buffer, /obj/machinery/computer/cloning)) @@ -335,10 +356,13 @@ to_chat(user, "Error: Pod has no occupant.") return else + add_fingerprint(user) connected_message("Emergency Ejection") SPEAK("An emergency ejection of the current clone has occurred. Survival not guaranteed.") to_chat(user, "You force an emergency ejection. ") go_out() + log_cloning("[key_name(user)] manually ejected [key_name(mob_occupant)] from [src] at [AREACOORD(src)].") + log_combat(user, mob_occupant, "ejected", W, "from [src]") mob_occupant.apply_vore_prefs() else return ..() @@ -348,6 +372,9 @@ return to_chat(user, "You corrupt the genetic compiler.") malfunction() + add_fingerprint(user) + log_cloning("[key_name(user)] emagged [src] at [AREACOORD(src)], causing it to malfunction.") + log_combat(user, src, "emagged", null, occupant ? "[occupant] inside, killing them via malfunction." : null) //Put messages in the connected computer's temp var for display. /obj/machinery/clonepod/proc/connected_message(message) @@ -418,6 +445,7 @@ to_chat(mob_occupant, "Agony blazes across your consciousness as your body is torn apart.
Is this what dying is like? Yes it is.
") playsound(src.loc, 'sound/machines/warning-buzzer.ogg', 50, 0) SEND_SOUND(mob_occupant, sound('sound/hallucinations/veryfar_noise.ogg',0,1,50)) + log_cloning("[key_name(mob_occupant)] destroyed within [src] at [AREACOORD(src)] due to malfunction.") QDEL_IN(mob_occupant, 40) /obj/machinery/clonepod/relaymove(mob/user) @@ -436,11 +464,14 @@ SPEAK(Gibberish("Exposure to electromagnetic fields has caused the ejection of, ERROR: John Doe, prematurely." ,0)) mob_occupant.apply_vore_prefs() go_out() + log_cloning("[key_name(mob_occupant)] ejected from [src] at [AREACOORD(src)] due to EMP pulse.") /obj/machinery/clonepod/ex_act(severity, target) ..() - if(!QDELETED(src)) + if(!QDELETED(src) && occupant) + var/mob/living/mob_occupant = occupant go_out() + log_cloning("[key_name(mob_occupant)] ejected from [src] at [AREACOORD(src)] due to explosion.") /obj/machinery/clonepod/handle_atom_del(atom/A) if(A == occupant) @@ -456,7 +487,9 @@ /obj/machinery/clonepod/deconstruct(disassembled = TRUE) if(occupant) + var/mob/living/mob_occupant = occupant go_out() + log_cloning("[key_name(mob_occupant)] ejected from [src] at [AREACOORD(src)] due to deconstruction.") ..() /obj/machinery/clonepod/proc/maim_clone(mob/living/carbon/human/H) From 417401b2b7f28187f51ec5ee57bd60d93d0cfd6e Mon Sep 17 00:00:00 2001 From: Toast Date: Tue, 3 Dec 2019 20:27:33 -0500 Subject: [PATCH 04/11] Last commit before first test run --- code/game/machinery/computer/cloning.dm | 58 ++++++++++++------------- 1 file changed, 29 insertions(+), 29 deletions(-) diff --git a/code/game/machinery/computer/cloning.dm b/code/game/machinery/computer/cloning.dm index ca5e15d1..c565c292 100644 --- a/code/game/machinery/computer/cloning.dm +++ b/code/game/machinery/computer/cloning.dm @@ -13,19 +13,18 @@ var/scantemp_ckey var/scantemp = "Ready to Scan" var/menu = 1 //Which menu screen to display + var/list/records = list() var/datum/data/record/active_record = null var/obj/item/disk/data/diskette = null //Mostly so the geneticist can steal everything. + var/loading = 0 // Nice loading text var/autoprocess = 0 - var/list/records = list() light_color = LIGHT_COLOR_BLUE /obj/machinery/computer/cloning/Initialize() . = ..() updatemodules(TRUE) - var/obj/item/circuitboard/computer/cloning/board = circuit - records = board.records /obj/machinery/computer/cloning/Destroy() @@ -62,6 +61,7 @@ /proc/grow_clone_from_record(obj/machinery/clonepod/pod, datum/data/record/R, empty) return pod.growclone(R.fields["name"], R.fields["UI"], R.fields["SE"], R.fields["mindref"], R.fields["last_death"], R.fields["blood_type"], R.fields["mrace"], R.fields["features"], R.fields["factions"], R.fields["quirks"], R.fields["bank_account"], R.fields["traumas"], empty) +//If for some reason this doesn't work, re-adding the Ckey field next commit ~Synn /obj/machinery/computer/cloning/process() if(!(scanner && LAZYLEN(pods) && autoprocess)) @@ -77,7 +77,7 @@ return if(pod.occupant) - continue //how though? + break var/result = grow_clone_from_record(pod, R) if(result & CLONING_SUCCESS) @@ -138,7 +138,9 @@ to_chat(user, "You insert [W].") playsound(src, 'sound/machines/terminal_insert_disc.ogg', 50, 0) src.updateUsrDialog() - else if(istype(W, /obj/item/multitool)) + else if(W.tool_behaviour == TOOL_MULTITOOL) + if(!multitool_check_buffer(user, W)) + return var/obj/item/multitool/P = W if(istype(P.buffer, /obj/machinery/clonepod)) @@ -249,7 +251,14 @@ dat += "Unable to locate Health Implant.

" dat += "Unique Identifier:
[src.active_record.fields["UI"]]
" - dat += "Structural Enzymes:
[src.active_record.fields["SE"]]
" + dat += "Structural Enzymes:
" + for(var/key in active_record.fields["SE"]) + if(key != RACEMUT) + var/val = active_record.fields["SE"][key] + var/alias = GLOB.all_mutations[key].alias + dat +="[alias]: [val]
" + + dat += "

" if(diskette && diskette.fields) dat += "
" @@ -306,19 +315,13 @@ else if ((href_list["scan"]) && !isnull(scanner) && scanner.is_operational()) scantemp = "" - var/body_only = href_list["body_only"] loading = 1 src.updateUsrDialog() playsound(src, 'sound/machines/terminal_prompt.ogg', 50, 0) say("Initiating scan...") - spawn(20) - src.scan_occupant(scanner.occupant, usr, body_only) - - loading = 0 - src.updateUsrDialog() - playsound(src, 'sound/machines/terminal_prompt_confirm.ogg', 50, 0) + addtimer(CALLBACK(src, .proc/do_scan, usr, body_only), 2 SECONDS) //No locking an open scanner. @@ -334,14 +337,9 @@ playsound(src, "terminal_type", 25, 0) src.active_record = find_record("id", href_list["view_rec"], records) if(active_record) - if(!active_record.fields["ckey"]) - records -= active_record - active_record = null - src.temp = "Record Corrupt" - else - src.menu = 3 + menu = 3 else - src.temp = "Record missing." + temp = "Record missing." else if (href_list["del_rec"]) if ((!src.active_record) || (src.menu < 3)) @@ -369,13 +367,12 @@ var/obj/item/card/id/C = usr.get_active_held_item() if (istype(C)||istype(C, /obj/item/pda)) if(src.check_access(C)) + log_cloning("[key_name(usr)] deleted [key_name(active_record.fields["mindref"])]'s cloning records from [src] at [AREACOORD(src)].") src.temp = "[src.active_record.fields["name"]] => Record deleted." src.records.Remove(active_record) active_record = null playsound(src, 'sound/machines/terminal_prompt_confirm.ogg', 50, 0) src.menu = 2 - var/obj/item/circuitboard/computer/cloning/board = circuit - board.records = records else src.temp = "Access Denied." playsound(src, 'sound/machines/terminal_prompt_deny.ogg', 50, 0) @@ -480,6 +477,13 @@ src.updateUsrDialog() return +/obj/machinery/computer/cloning/proc/do_scan(mob/user, body_only) + scan_occupant(scanner.occupant, user, body_only) + + loading = FALSE + updateUsrDialog() + playsound(src, 'sound/machines/terminal_prompt_confirm.ogg', 50, FALSE) + /obj/machinery/computer/cloning/proc/scan_occupant(occupant, mob/M, body_only) var/mob/living/mob_occupant = get_mob_or_brainmob(occupant) var/datum/dna/dna @@ -533,14 +537,14 @@ R.fields["blood_type"] = dna.blood_type R.fields["features"] = dna.features R.fields["factions"] = mob_occupant.faction - R.fields["body_only"] = body_only R.fields["quirks"] = list() for(var/V in mob_occupant.roundstart_quirks) var/datum/quirk/T = V R.fields["quirks"][T.type] = T.clone_data() - if (!isnull(mob_occupant.mind)) //Save that mind so traitors can continue traitoring after cloning. - R.fields["mind"] = "[REF(mob_occupant.mind)]" + R.fields["mindref"] = "[REF(mob_occupant.mind)]" + R.fields["last_death"] = mob_occupant.stat == DEAD ? mob_occupant.mind.last_death : -1 + R.fields["body_only"] = body_only if(!body_only) //Add an implant if needed @@ -565,9 +569,5 @@ scantemp = "Subject successfully scanned." src.records += R log_cloning("[M ? key_name(M) : "Autoprocess"] added the [body_only ? "body-only " : ""]record of [key_name(mob_occupant)] to [src] at [AREACOORD(src)].") - - var/obj/item/circuitboard/computer/cloning/board = circuit - board.records = records - scantemp = "Subject successfully scanned." playsound(src, 'sound/machines/terminal_prompt_confirm.ogg', 50, 0) From 66493eef79edb16aad8065f99c20b67cf650dfeb Mon Sep 17 00:00:00 2001 From: Toast Date: Tue, 3 Dec 2019 22:52:34 -0500 Subject: [PATCH 05/11] Totally wasn't probably "mind" and "mindref" causing the issue TEST NUMERO TWO --- code/game/machinery/computer/cloning.dm | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/code/game/machinery/computer/cloning.dm b/code/game/machinery/computer/cloning.dm index c565c292..120b04dc 100644 --- a/code/game/machinery/computer/cloning.dm +++ b/code/game/machinery/computer/cloning.dm @@ -60,7 +60,7 @@ . = pod /proc/grow_clone_from_record(obj/machinery/clonepod/pod, datum/data/record/R, empty) - return pod.growclone(R.fields["name"], R.fields["UI"], R.fields["SE"], R.fields["mindref"], R.fields["last_death"], R.fields["blood_type"], R.fields["mrace"], R.fields["features"], R.fields["factions"], R.fields["quirks"], R.fields["bank_account"], R.fields["traumas"], empty) + return pod.growclone(R.fields["ckey"], R.fields["name"], R.fields["UI"], R.fields["SE"], R.fields["mind"], R.fields["last_death"], R.fields["blood_type"], R.fields["mrace"], R.fields["features"], R.fields["factions"], R.fields["quirks"], empty) //If for some reason this doesn't work, re-adding the Ckey field next commit ~Synn /obj/machinery/computer/cloning/process() @@ -460,6 +460,8 @@ if(result & CLONING_DELETE_RECORD) if(active_record == C) active_record = null + menu = 1 + records -= C if(!success) temp = "[C.fields["name"]] => Initialisation failure." @@ -542,7 +544,7 @@ var/datum/quirk/T = V R.fields["quirks"][T.type] = T.clone_data() - R.fields["mindref"] = "[REF(mob_occupant.mind)]" + R.fields["mind"] = "[REF(mob_occupant.mind)]" R.fields["last_death"] = mob_occupant.stat == DEAD ? mob_occupant.mind.last_death : -1 R.fields["body_only"] = body_only From ff7a90536af36dc430d4341a1afdc5e873199a6b Mon Sep 17 00:00:00 2001 From: Toast Date: Tue, 3 Dec 2019 23:16:05 -0500 Subject: [PATCH 06/11] Double checking r.fields --- code/game/machinery/computer/cloning.dm | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/code/game/machinery/computer/cloning.dm b/code/game/machinery/computer/cloning.dm index 120b04dc..18755582 100644 --- a/code/game/machinery/computer/cloning.dm +++ b/code/game/machinery/computer/cloning.dm @@ -82,7 +82,7 @@ var/result = grow_clone_from_record(pod, R) if(result & CLONING_SUCCESS) temp = "[R.fields["name"]] => Cloning cycle in progress..." - log_cloning("Cloning of [key_name(R.fields["mindref"])] automatically started via autoprocess - [src] at [AREACOORD(src)]. Pod: [pod] at [AREACOORD(pod)].") + log_cloning("Cloning of [key_name(R.fields["mind"])] automatically started via autoprocess - [src] at [AREACOORD(src)]. Pod: [pod] at [AREACOORD(pod)].") if(result & CLONING_DELETE_RECORD) records -= R @@ -367,7 +367,7 @@ var/obj/item/card/id/C = usr.get_active_held_item() if (istype(C)||istype(C, /obj/item/pda)) if(src.check_access(C)) - log_cloning("[key_name(usr)] deleted [key_name(active_record.fields["mindref"])]'s cloning records from [src] at [AREACOORD(src)].") + log_cloning("[key_name(usr)] deleted [key_name(active_record.fields["mind"])]'s cloning records from [src] at [AREACOORD(src)].") src.temp = "[src.active_record.fields["name"]] => Record deleted." src.records.Remove(active_record) active_record = null @@ -454,9 +454,9 @@ menu = 1 success = TRUE if(!empty) - log_cloning("[key_name(usr)] initiated cloning of [key_name(C.fields["mindref"])] via [src] at [AREACOORD(src)]. Pod: [pod] at [AREACOORD(pod)].") + log_cloning("[key_name(usr)] initiated cloning of [key_name(C.fields["mind"])] via [src] at [AREACOORD(src)]. Pod: [pod] at [AREACOORD(pod)].") else - log_cloning("[key_name(usr)] initiated EMPTY cloning of [key_name(C.fields["mindref"])] via [src] at [AREACOORD(src)]. Pod: [pod] at [AREACOORD(pod)].") + log_cloning("[key_name(usr)] initiated EMPTY cloning of [key_name(C.fields["mind"])] via [src] at [AREACOORD(src)]. Pod: [pod] at [AREACOORD(pod)].") if(result & CLONING_DELETE_RECORD) if(active_record == C) active_record = null @@ -559,7 +559,7 @@ imp.implant(mob_occupant) R.fields["imp"] = "[REF(imp)]" - var/datum/data/record/old_record = find_record("mindref", REF(mob_occupant.mind), records) + var/datum/data/record/old_record = find_record("mind", REF(mob_occupant.mind), records) if(body_only) old_record = find_record("UE", dna.unique_enzymes, records) //Body-only records cannot be identified by mind, so we use the DNA if(old_record && ((old_record.fields["UI"] != dna.uni_identity) || (!old_record.fields["body_only"]))) //Never overwrite a mind-and-body record if it exists From 2cbcd7d49519db45ac762495b8c325f79919db0e Mon Sep 17 00:00:00 2001 From: Toast Date: Tue, 3 Dec 2019 23:30:21 -0500 Subject: [PATCH 07/11] Revert "Double checking r.fields" This reverts commit ff7a90536af36dc430d4341a1afdc5e873199a6b. --- code/game/machinery/computer/cloning.dm | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/code/game/machinery/computer/cloning.dm b/code/game/machinery/computer/cloning.dm index 18755582..120b04dc 100644 --- a/code/game/machinery/computer/cloning.dm +++ b/code/game/machinery/computer/cloning.dm @@ -82,7 +82,7 @@ var/result = grow_clone_from_record(pod, R) if(result & CLONING_SUCCESS) temp = "[R.fields["name"]] => Cloning cycle in progress..." - log_cloning("Cloning of [key_name(R.fields["mind"])] automatically started via autoprocess - [src] at [AREACOORD(src)]. Pod: [pod] at [AREACOORD(pod)].") + log_cloning("Cloning of [key_name(R.fields["mindref"])] automatically started via autoprocess - [src] at [AREACOORD(src)]. Pod: [pod] at [AREACOORD(pod)].") if(result & CLONING_DELETE_RECORD) records -= R @@ -367,7 +367,7 @@ var/obj/item/card/id/C = usr.get_active_held_item() if (istype(C)||istype(C, /obj/item/pda)) if(src.check_access(C)) - log_cloning("[key_name(usr)] deleted [key_name(active_record.fields["mind"])]'s cloning records from [src] at [AREACOORD(src)].") + log_cloning("[key_name(usr)] deleted [key_name(active_record.fields["mindref"])]'s cloning records from [src] at [AREACOORD(src)].") src.temp = "[src.active_record.fields["name"]] => Record deleted." src.records.Remove(active_record) active_record = null @@ -454,9 +454,9 @@ menu = 1 success = TRUE if(!empty) - log_cloning("[key_name(usr)] initiated cloning of [key_name(C.fields["mind"])] via [src] at [AREACOORD(src)]. Pod: [pod] at [AREACOORD(pod)].") + log_cloning("[key_name(usr)] initiated cloning of [key_name(C.fields["mindref"])] via [src] at [AREACOORD(src)]. Pod: [pod] at [AREACOORD(pod)].") else - log_cloning("[key_name(usr)] initiated EMPTY cloning of [key_name(C.fields["mind"])] via [src] at [AREACOORD(src)]. Pod: [pod] at [AREACOORD(pod)].") + log_cloning("[key_name(usr)] initiated EMPTY cloning of [key_name(C.fields["mindref"])] via [src] at [AREACOORD(src)]. Pod: [pod] at [AREACOORD(pod)].") if(result & CLONING_DELETE_RECORD) if(active_record == C) active_record = null @@ -559,7 +559,7 @@ imp.implant(mob_occupant) R.fields["imp"] = "[REF(imp)]" - var/datum/data/record/old_record = find_record("mind", REF(mob_occupant.mind), records) + var/datum/data/record/old_record = find_record("mindref", REF(mob_occupant.mind), records) if(body_only) old_record = find_record("UE", dna.unique_enzymes, records) //Body-only records cannot be identified by mind, so we use the DNA if(old_record && ((old_record.fields["UI"] != dna.uni_identity) || (!old_record.fields["body_only"]))) //Never overwrite a mind-and-body record if it exists From 7c2291dca225f5c9b86f4f4ead32600cfc03c8c1 Mon Sep 17 00:00:00 2001 From: Toast Date: Wed, 4 Dec 2019 00:23:34 -0500 Subject: [PATCH 08/11] So far still broken --- .../logs/2019/12/03/round-23.40.49/cargo.html | 1 + .../2019/12/03/round-23.40.49/cloning.log | 1 + .../2019/12/03/round-23.40.49/initialize.log | 877 ++++ .../2019/12/03/round-23.40.49/newscaster.json | 1 + .../2019/12/03/round-23.40.49/overlay.log | 650 +++ .../2019/12/03/round-23.40.49/singulo.html | 9 + .../logs/2019/12/03/round-23.56.34/attack.log | 15 + .../logs/2019/12/03/round-23.56.34/cargo.html | 1 + .../2019/12/03/round-23.56.34/cloning.log | 6 + .../12/03/round-23.56.34/config_error.log | 12 + data/logs/2019/12/03/round-23.56.34/game.log | 333 ++ .../2019/12/03/round-23.56.34/gravity.html | 6 + data/logs/2019/12/03/round-23.56.34/hrefs.log | 24 + .../2019/12/03/round-23.56.34/initialize.log | 835 ++++ .../2019/12/03/round-23.56.34/job_debug.log | 2 + .../2019/12/03/round-23.56.34/manifest.log | 3 + .../2019/12/03/round-23.56.34/newscaster.json | 1 + .../2019/12/03/round-23.56.34/overlay.log | 684 +++ data/logs/2019/12/03/round-23.56.34/pda.log | 2 + data/logs/2019/12/03/round-23.56.34/qdel.log | 3658 +++++++++++++++++ .../2019/12/03/round-23.56.34/runtime.log | 133 + .../2019/12/03/round-23.56.34/singulo.html | 10 + .../12/03/round-23.56.34/supermatter.html | 1 + .../2019/12/03/round-23.56.34/telecomms.log | 37 + .../logs/2019/12/04/round-00.12.46/attack.log | 4 + .../logs/2019/12/04/round-00.12.46/cargo.html | 1 + .../2019/12/04/round-00.12.46/cloning.log | 36 + .../12/04/round-00.12.46/config_error.log | 12 + data/logs/2019/12/04/round-00.12.46/game.log | 257 ++ .../2019/12/04/round-00.12.46/gravity.html | 6 + data/logs/2019/12/04/round-00.12.46/hrefs.log | 23 + .../2019/12/04/round-00.12.46/job_debug.log | 2 + .../2019/12/04/round-00.12.46/manifest.log | 3 + data/logs/2019/12/04/round-00.12.46/pda.log | 2 + data/logs/2019/12/04/round-00.12.46/qdel.log | 2 + .../2019/12/04/round-00.12.46/runtime.log | 64 + .../2019/12/04/round-00.12.46/singulo.html | 13 + .../12/04/round-00.12.46/supermatter.html | 1 + .../2019/12/04/round-00.12.46/telecomms.log | 27 + 39 files changed, 7755 insertions(+) create mode 100644 data/logs/2019/12/03/round-23.40.49/cargo.html create mode 100644 data/logs/2019/12/03/round-23.40.49/cloning.log create mode 100644 data/logs/2019/12/03/round-23.40.49/initialize.log create mode 100644 data/logs/2019/12/03/round-23.40.49/newscaster.json create mode 100644 data/logs/2019/12/03/round-23.40.49/overlay.log create mode 100644 data/logs/2019/12/03/round-23.40.49/singulo.html create mode 100644 data/logs/2019/12/03/round-23.56.34/attack.log create mode 100644 data/logs/2019/12/03/round-23.56.34/cargo.html create mode 100644 data/logs/2019/12/03/round-23.56.34/cloning.log create mode 100644 data/logs/2019/12/03/round-23.56.34/config_error.log create mode 100644 data/logs/2019/12/03/round-23.56.34/game.log create mode 100644 data/logs/2019/12/03/round-23.56.34/gravity.html create mode 100644 data/logs/2019/12/03/round-23.56.34/hrefs.log create mode 100644 data/logs/2019/12/03/round-23.56.34/initialize.log create mode 100644 data/logs/2019/12/03/round-23.56.34/job_debug.log create mode 100644 data/logs/2019/12/03/round-23.56.34/manifest.log create mode 100644 data/logs/2019/12/03/round-23.56.34/newscaster.json create mode 100644 data/logs/2019/12/03/round-23.56.34/overlay.log create mode 100644 data/logs/2019/12/03/round-23.56.34/pda.log create mode 100644 data/logs/2019/12/03/round-23.56.34/qdel.log create mode 100644 data/logs/2019/12/03/round-23.56.34/runtime.log create mode 100644 data/logs/2019/12/03/round-23.56.34/singulo.html create mode 100644 data/logs/2019/12/03/round-23.56.34/supermatter.html create mode 100644 data/logs/2019/12/03/round-23.56.34/telecomms.log create mode 100644 data/logs/2019/12/04/round-00.12.46/attack.log create mode 100644 data/logs/2019/12/04/round-00.12.46/cargo.html create mode 100644 data/logs/2019/12/04/round-00.12.46/cloning.log create mode 100644 data/logs/2019/12/04/round-00.12.46/config_error.log create mode 100644 data/logs/2019/12/04/round-00.12.46/game.log create mode 100644 data/logs/2019/12/04/round-00.12.46/gravity.html create mode 100644 data/logs/2019/12/04/round-00.12.46/hrefs.log create mode 100644 data/logs/2019/12/04/round-00.12.46/job_debug.log create mode 100644 data/logs/2019/12/04/round-00.12.46/manifest.log create mode 100644 data/logs/2019/12/04/round-00.12.46/pda.log create mode 100644 data/logs/2019/12/04/round-00.12.46/qdel.log create mode 100644 data/logs/2019/12/04/round-00.12.46/runtime.log create mode 100644 data/logs/2019/12/04/round-00.12.46/singulo.html create mode 100644 data/logs/2019/12/04/round-00.12.46/supermatter.html create mode 100644 data/logs/2019/12/04/round-00.12.46/telecomms.log diff --git a/data/logs/2019/12/03/round-23.40.49/cargo.html b/data/logs/2019/12/03/round-23.40.49/cargo.html new file mode 100644 index 00000000..73a4f30f --- /dev/null +++ b/data/logs/2019/12/03/round-23.40.49/cargo.html @@ -0,0 +1 @@ +23:41:36 [0x2026007] (152,108,1) || the supply shuttle Shuttle contents sold for 0 credits. Contents: /list Message: none.
diff --git a/data/logs/2019/12/03/round-23.40.49/cloning.log b/data/logs/2019/12/03/round-23.40.49/cloning.log new file mode 100644 index 00000000..03bc7bc5 --- /dev/null +++ b/data/logs/2019/12/03/round-23.40.49/cloning.log @@ -0,0 +1 @@ +[2019-12-04 04:42:33.891] CLONING: Autoprocess added the record of BigFatAnimeTiddies/(Alessandra Joghs) to the cloning console at Genetics Lab (154, 113, 2). diff --git a/data/logs/2019/12/03/round-23.40.49/initialize.log b/data/logs/2019/12/03/round-23.40.49/initialize.log new file mode 100644 index 00000000..b6c65287 --- /dev/null +++ b/data/logs/2019/12/03/round-23.40.49/initialize.log @@ -0,0 +1,877 @@ +Path : /mob/dview +- Didn't call atom/Initialize() +Path : /obj/item/clothing/mask/breath +- Didn't return an Initialize hint +Path : /obj/item/clothing/mask/cigarette/cigar/cohiba +- Didn't return an Initialize hint +Path : /obj/item/clothing/mask/cigarette/cigar/havana +- Didn't return an Initialize hint +Path : /obj/item/clothing/mask/cigarette/cigar +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/color/red +- Didn't return an Initialize hint +Path : /obj/item/clothing/shoes/sneakers/brown +- Didn't return an Initialize hint +Path : /obj/item/clothing/suit/armor/vest +- Didn't return an Initialize hint +Path : /obj/item/clothing/head/helmet/swat +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/color/green +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/jabroni +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/geisha +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/kilt +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/roman +- Didn't return an Initialize hint +Path : /obj/item/clothing/suit/armor/tdome/red +- Didn't return an Initialize hint +Path : /obj/item/clothing/head/helmet/thunderdome +- Didn't return an Initialize hint +Path : /obj/item/clothing/suit/armor/tdome/green +- Didn't return an Initialize hint +Path : /obj/item/clothing/mask/surgical +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/plasmaman +- Didn't return an Initialize hint +Path : /obj/item/clothing/head/helmet/space/plasmaman +- Didn't return an Initialize hint +Path : /obj/item/clothing/head/chefhat +- Didn't return an Initialize hint +Path : /obj/item/clothing/suit/apron/chef +- Didn't return an Initialize hint +Path : /obj/item/clothing/accessory/medal/gold +- Didn't return an Initialize hint +Path : /obj/item/clothing/accessory/medal +- Didn't return an Initialize hint +Path : /obj/structure/closet/secure_closet/freezer/meat +- Didn't return an Initialize hint +Path : /obj/structure/closet/secure_closet/freezer/fridge +- Didn't return an Initialize hint +Path : /obj/structure/closet/secure_closet/freezer/kitchen +- Didn't return an Initialize hint +Path : /obj/item/clothing/accessory/lawyers_badge +- Didn't return an Initialize hint +Path : /obj/item/clothing/accessory/medal/silver +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/waiter +- Didn't return an Initialize hint +Path : /obj/item/clothing/accessory/waistcoat +- Didn't return an Initialize hint +Path : /obj/item/clothing/head/soft/mime +- Didn't return an Initialize hint +Path : /obj/item/clothing/suit/toggle/chef +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/rank/chef +- Didn't return an Initialize hint +Path : /obj/item/clothing/suit/wizrobe/black +- Didn't return an Initialize hint +Path : /obj/item/clothing/head/wizard/black +- Didn't return an Initialize hint +Path : /obj/item/clothing/head/helmet/sec +- Didn't return an Initialize hint +Path : /obj/item/clothing/glasses/hud/security/sunglasses +- Didn't return an Initialize hint +Path : /obj/item/clothing/head/helmet/swat/nanotrasen +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/syndicate +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/syndicate/skirt +- Didn't return an Initialize hint +Path : /obj/item/clothing/shoes/sneakers/black +- Didn't return an Initialize hint +Path : /obj/item/clothing/glasses/night +- Didn't return an Initialize hint +Path : /obj/item/clothing/mask/gas +- Didn't return an Initialize hint +Path : /obj/item/clothing/shoes/sandal/marisa +- Didn't return an Initialize hint +Path : /obj/item/clothing/suit/wizrobe/marisa +- Didn't return an Initialize hint +Path : /obj/item/clothing/head/wizard/marisa +- Didn't return an Initialize hint +Path : /obj/item/clothing/suit/wizrobe/red +- Didn't return an Initialize hint +Path : /obj/item/clothing/head/wizard/red +- Didn't return an Initialize hint +Path : /obj/item/clothing/shoes/sandal/magic +- Didn't return an Initialize hint +Path : /obj/item/clothing/gloves/color/latex +- Didn't return an Initialize hint +Path : /obj/item/clothing/suit/wizrobe/magusblue +- Didn't return an Initialize hint +Path : /obj/item/clothing/head/wizard/magus +- Didn't return an Initialize hint +Path : /obj/item/clothing/suit/wizrobe/magusred +- Didn't return an Initialize hint +Path : /obj/item/clothing/shoes/magboots +- Didn't return an Initialize hint +Path : /obj/item/clothing/ears/earmuffs +- Didn't return an Initialize hint +Path : /obj/item/clothing/head/helmet/space/hardsuit/deathsquad +- Didn't return an Initialize hint +Path : /obj/item/clothing/suit/space/hardsuit/deathsquad +- Didn't return an Initialize hint +Path : /obj/item/clothing/gloves/combat +- Didn't return an Initialize hint +Path : /obj/item/clothing/shoes/combat/swat +- Didn't return an Initialize hint +Path : /obj/item/clothing/mask/gas/sechailer/swat +- Didn't return an Initialize hint +Path : /obj/item/clothing/accessory/medal/gold/captain +- Didn't return an Initialize hint +Path : /obj/item/clothing/accessory/medal/silver/valor +- Didn't return an Initialize hint +Path : /obj/item/clothing/accessory/medal/silver/security +- Didn't return an Initialize hint +Path : /obj/item/clothing/accessory/medal/bronze_heart +- Didn't return an Initialize hint +Path : /obj/item/clothing/accessory/medal/plasma/nobel_science +- Didn't return an Initialize hint +Path : /obj/item/clothing/accessory/medal/conduct +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/rank/curator/treasure_hunter +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/skirt/black +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/shorts/black +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/pants/track +- Didn't return an Initialize hint +Path : /obj/item/clothing/accessory/armband/deputy +- Didn't return an Initialize hint +Path : /obj/item/clothing/shoes/jackboots +- Didn't return an Initialize hint +Path : /obj/item/clothing/shoes/laceup +- Didn't return an Initialize hint +Path : /obj/item/clothing/neck/stripedredscarf +- Didn't return an Initialize hint +Path : /obj/item/clothing/neck/tie/red +- Didn't return an Initialize hint +Path : /obj/item/clothing/head/helmet/space/beret +- Didn't return an Initialize hint +Path : /obj/item/clothing/suit/curator +- Didn't return an Initialize hint +Path : /obj/item/clothing/suit/space/officer +- Didn't return an Initialize hint +Path : /obj/item/clothing/gloves/fingerless +- Didn't return an Initialize hint +Path : /obj/item/clothing/gloves/color/black +- Didn't return an Initialize hint +Path : /obj/item/clothing/glasses/eyepatch +- Didn't return an Initialize hint +Path : /obj/item/clothing/head/hooded/winterhood/cargo +- Didn't return an Initialize hint +Path : /obj/item/clothing/suit/hooded/wintercoat/cargo +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/rank/cargotech +- Didn't return an Initialize hint +Path : /obj/item/clothing/head/soft +- Didn't return an Initialize hint +Path : /obj/item/clothing/neck/cloak/qm +- Didn't return an Initialize hint +Path : /obj/item/clothing/head/beret/qm +- Didn't return an Initialize hint +Path : /obj/item/clothing/accessory/medal/ribbon/cargo +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/rank/cargo +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/rank/cargo/skirt +- Didn't return an Initialize hint +Path : /obj/item/clothing/suit/fire/firefighter +- Didn't return an Initialize hint +Path : /obj/item/clothing/head/hooded/winterhood/qm +- Didn't return an Initialize hint +Path : /obj/item/clothing/suit/hooded/wintercoat/qm +- Didn't return an Initialize hint +Path : /obj/item/clothing/suit/judgerobe +- Didn't return an Initialize hint +Path : /obj/item/clothing/head/powdered_wig +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/lawyer/female +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/lawyer/black +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/lawyer/red +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/lawyer/bluesuit +- Didn't return an Initialize hint +Path : /obj/item/clothing/suit/toggle/lawyer +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/lawyer/purpsuit +- Didn't return an Initialize hint +Path : /obj/item/clothing/suit/toggle/lawyer/purple +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/lawyer/blacksuit +- Didn't return an Initialize hint +Path : /obj/item/clothing/suit/toggle/lawyer/black +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/trek/medsci +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/trek/command +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/trek/engsec +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/schoolgirl/green +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/schoolgirl +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/schoolgirl/orange +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/schoolgirl/red +- Didn't return an Initialize hint +Path : /obj/item/clothing/suit/armor/riot/knight/blue +- Didn't return an Initialize hint +Path : /obj/item/clothing/head/helmet/knight/blue +- Didn't return an Initialize hint +Path : /obj/item/clothing/head/crown/fancy +- Didn't return an Initialize hint +Path : /obj/item/clothing/suit/armor/riot/knight/red +- Didn't return an Initialize hint +Path : /obj/item/clothing/head/helmet/knight/red +- Didn't return an Initialize hint +Path : /obj/item/clothing/suit/nun +- Didn't return an Initialize hint +Path : /obj/item/clothing/head/nun_hood +- Didn't return an Initialize hint +Path : /obj/item/clothing/suit/holidaypriest +- Didn't return an Initialize hint +Path : /obj/item/clothing/suit/beekeeper_suit +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/color/white +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/skirt/color/white +- Didn't return an Initialize hint +Path : /obj/item/clothing/shoes/sneakers/white +- Didn't return an Initialize hint +Path : /obj/item/clothing/head/beekeeper_head +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/color/rainbow +- Didn't return an Initialize hint +Path : /obj/item/clothing/glasses/sunglasses +- Didn't return an Initialize hint +Path : /obj/item/clothing/gloves/color/latex/nitrile +- Didn't return an Initialize hint +Path : /obj/item/clothing/suit/apron/surgical +- Didn't return an Initialize hint +Path : /obj/item/clothing/mask/cigarette/pipe +- Didn't return an Initialize hint +Path : /obj/item/clothing/suit/bomb_suit +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/color/black +- Didn't return an Initialize hint +Path : /obj/item/clothing/head/bomb_hood +- Didn't return an Initialize hint +Path : /obj/item/clothing/suit/bomb_suit/security +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/rank/security +- Didn't return an Initialize hint +Path : /obj/item/clothing/head/bomb_hood/security +- Didn't return an Initialize hint +Path : /obj/item/clothing/suit/armor/bulletproof +- Didn't return an Initialize hint +Path : /obj/item/clothing/head/helmet/alt +- Didn't return an Initialize hint +Path : /obj/item/clothing/suit/armor/riot +- Didn't return an Initialize hint +Path : /obj/item/clothing/head/helmet/riot +- Didn't return an Initialize hint +Path : /obj/item/clothing/suit/armor/laserproof +- Didn't return an Initialize hint +Path : /obj/item/clothing/suit/bio_suit/security +- Didn't return an Initialize hint +Path : /obj/item/clothing/head/bio_hood/security +- Didn't return an Initialize hint +Path : /obj/item/clothing/head/helmet/space/hardsuit/security/hos +- Didn't return an Initialize hint +Path : /obj/item/clothing/suit/space/hardsuit/security/hos +- Didn't return an Initialize hint +Path : /obj/item/clothing/mask/gas/sechailer +- Didn't return an Initialize hint +Path : /obj/item/clothing/neck/cloak/hos +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/hosparadefem +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/hosparademale +- Didn't return an Initialize hint +Path : /obj/item/clothing/suit/armor/vest/leather +- Didn't return an Initialize hint +Path : /obj/item/clothing/suit/armor/hos +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/rank/head_of_security/skirt +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/rank/head_of_security/alt +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/rank/head_of_security/alt/skirt +- Didn't return an Initialize hint +Path : /obj/item/clothing/head/HoS +- Didn't return an Initialize hint +Path : /obj/item/clothing/glasses/hud/security/sunglasses/eyepatch +- Didn't return an Initialize hint +Path : /obj/item/clothing/glasses/hud/security/sunglasses/gars/supergars +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/rank/head_of_security/grey +- Didn't return an Initialize hint +Path : /obj/item/clothing/head/hooded/winterhood/hos +- Didn't return an Initialize hint +Path : /obj/item/clothing/suit/hooded/wintercoat/hos +- Didn't return an Initialize hint +Path : /obj/item/clothing/head/helmet/space/hardsuit/security +- Didn't return an Initialize hint +Path : /obj/item/clothing/suit/space/hardsuit/security +- Didn't return an Initialize hint +Path : /obj/item/clothing/suit/straight_jacket +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/rank/prisoner +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/rank/prisoner/skirt +- Didn't return an Initialize hint +Path : /obj/item/clothing/shoes/sneakers/orange +- Didn't return an Initialize hint +Path : /obj/item/clothing/head/helmet +- Didn't return an Initialize hint +Path : /obj/item/clothing/suit/armor/vest/warden +- Didn't return an Initialize hint +Path : /obj/item/clothing/head/warden +- Didn't return an Initialize hint +Path : /obj/item/clothing/head/warden/drill +- Didn't return an Initialize hint +Path : /obj/item/clothing/head/beret/sec/navywarden +- Didn't return an Initialize hint +Path : /obj/item/clothing/suit/armor/vest/warden/alt +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/rank/warden/navyblue +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/rank/warden/skirt +- Didn't return an Initialize hint +Path : /obj/item/clothing/gloves/krav_maga/sec +- Didn't return an Initialize hint +Path : /obj/item/clothing/head/hardhat +- Didn't return an Initialize hint +Path : /obj/item/clothing/suit/jacket +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/polychromic/jumpsuit +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/polychromic/shirt +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/polychromic/kilt +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/polychromic/skirt +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/polychromic/shorts +- Didn't return an Initialize hint +Path : /obj/item/clothing/mask/bandana/red +- Didn't return an Initialize hint +Path : /obj/item/clothing/mask/bandana/blue +- Didn't return an Initialize hint +Path : /obj/item/clothing/mask/bandana/gold +- Didn't return an Initialize hint +Path : /obj/item/clothing/head/hooded/winterhood +- Didn't return an Initialize hint +Path : /obj/item/clothing/suit/hooded/wintercoat +- Didn't return an Initialize hint +Path : /obj/item/clothing/shoes/winterboots +- Didn't return an Initialize hint +Path : /obj/item/clothing/head/hardhat/red +- Didn't return an Initialize hint +Path : /obj/item/clothing/glasses/meson +- Didn't return an Initialize hint +Path : /obj/item/clothing/shoes/kindleKicks +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/shorts/purple +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/shorts/grey +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/shorts/red +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/shorts/blue +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/shorts/green +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/polychromic/shortpants +- Didn't return an Initialize hint +Path : /obj/item/clothing/gloves/boxing/blue +- Didn't return an Initialize hint +Path : /obj/item/clothing/gloves/boxing/green +- Didn't return an Initialize hint +Path : /obj/item/clothing/gloves/boxing/yellow +- Didn't return an Initialize hint +Path : /obj/item/clothing/gloves/boxing +- Didn't return an Initialize hint +Path : /obj/item/clothing/mask/luchador +- Didn't return an Initialize hint +Path : /obj/item/clothing/mask/luchador/rudos +- Didn't return an Initialize hint +Path : /obj/item/clothing/mask/luchador/tecnicos +- Didn't return an Initialize hint +Path : /obj/item/clothing/suit/bluetag +- Didn't return an Initialize hint +Path : /obj/item/clothing/head/helmet/bluetaghelm +- Didn't return an Initialize hint +Path : /obj/item/clothing/suit/redtag +- Didn't return an Initialize hint +Path : /obj/item/clothing/head/helmet/redtaghelm +- Didn't return an Initialize hint +Path : /obj/item/clothing/head/welding +- Didn't return an Initialize hint +Path : /obj/item/clothing/glasses/regular +- Didn't return an Initialize hint +Path : /obj/item/clothing/gloves/color/red +- Didn't return an Initialize hint +Path : /obj/item/clothing/gloves/color/fyellow +- Didn't return an Initialize hint +Path : /obj/item/clothing/mask/balaclava +- Didn't return an Initialize hint +Path : /obj/item/clothing/head/hooded/flashsuit +- Didn't return an Initialize hint +Path : /obj/item/clothing/suit/hooded/flashsuit +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/pj/red +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/pj/blue +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/rank/mailman +- Didn't return an Initialize hint +Path : /obj/item/clothing/head/mailman +- Didn't return an Initialize hint +Path : /obj/item/clothing/suit/hazardvest +- Didn't return an Initialize hint +Path : /obj/item/clothing/head/that +- Didn't return an Initialize hint +Path : /obj/item/clothing/suit/space/eva +- Didn't return an Initialize hint +Path : /obj/item/clothing/head/helmet/space/eva +- Didn't return an Initialize hint +Path : /obj/item/clothing/head/bearpelt +- Didn't return an Initialize hint +Path : /obj/item/clothing/suit/bio_suit/scientist +- Didn't return an Initialize hint +Path : /obj/item/clothing/head/bio_hood/scientist +- Didn't return an Initialize hint +Path : /obj/structure/closet/secure_closet/freezer/cream_pie +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/burial +- Didn't return an Initialize hint +Path : /obj/item/clothing/mask/cigarette/space_cigarette +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/suit_jacket/red +- Didn't return an Initialize hint +Path : /obj/item/clothing/gloves/color/purple +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/skirt/color/green +- Didn't return an Initialize hint +Path : /obj/item/clothing/mask/bandana/green +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/color/grey +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/skirt/color/grey +- Didn't return an Initialize hint +Path : /obj/item/clothing/head/soft/grey +- Didn't return an Initialize hint +Path : /obj/item/clothing/mask/bandana/black +- Didn't return an Initialize hint +Path : /obj/item/clothing/accessory/pocketprotector +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/skirt/color/black +- Didn't return an Initialize hint +Path : /obj/item/clothing/head/soft/black +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/rank/det +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/rank/det/skirt +- Didn't return an Initialize hint +Path : /obj/item/clothing/suit/det_suit +- Didn't return an Initialize hint +Path : /obj/item/clothing/head/fedora/det_hat +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/rank/det/grey +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/rank/det/grey/skirt +- Didn't return an Initialize hint +Path : /obj/item/clothing/suit/det_suit/grey +- Didn't return an Initialize hint +Path : /obj/item/clothing/head/fedora +- Didn't return an Initialize hint +Path : /obj/item/clothing/suit/armor/vest/det_suit +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/suit_jacket/female +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/suit_jacket/really_black +- Didn't return an Initialize hint +Path : /obj/item/clothing/suit/ianshirt +- Didn't return an Initialize hint +Path : /obj/item/clothing/gloves/color/rainbow +- Didn't return an Initialize hint +Path : /obj/item/clothing/head/soft/rainbow +- Didn't return an Initialize hint +Path : /obj/item/clothing/shoes/sneakers/rainbow +- Didn't return an Initialize hint +Path : /obj/item/clothing/glasses/welding +- Didn't return an Initialize hint +Path : /obj/item/clothing/head/helmet/space/hardsuit/captain +- Didn't return an Initialize hint +Path : /obj/item/clothing/suit/space/hardsuit/captain +- Didn't return an Initialize hint +Path : /obj/item/clothing/glasses/science +- Didn't return an Initialize hint +Path : /obj/item/clothing/accessory/armband/medblue +- Didn't return an Initialize hint +Path : /obj/item/clothing/head/hooded/winterhood/captain +- Didn't return an Initialize hint +Path : /obj/item/clothing/suit/hooded/wintercoat/captain +- Didn't return an Initialize hint +Path : /obj/item/clothing/neck/cloak/cap +- Didn't return an Initialize hint +Path : /obj/item/clothing/neck/petcollar +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/rank/captain +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/rank/captain/skirt +- Didn't return an Initialize hint +Path : /obj/item/clothing/suit/armor/vest/capcarapace +- Didn't return an Initialize hint +Path : /obj/item/clothing/head/caphat +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/captainparade +- Didn't return an Initialize hint +Path : /obj/item/clothing/suit/armor/vest/capcarapace/alt +- Didn't return an Initialize hint +Path : /obj/item/clothing/head/caphat/parade +- Didn't return an Initialize hint +Path : /obj/item/clothing/head/caphat/beret +- Didn't return an Initialize hint +Path : /obj/item/clothing/suit/captunic +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/rank/captain/femformal +- Didn't return an Initialize hint +Path : /obj/item/clothing/glasses/sunglasses/gar/supergar +- Didn't return an Initialize hint +Path : /obj/item/clothing/gloves/color/captain +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/rank/chemist +- Didn't return an Initialize hint +Path : /obj/item/clothing/suit/toggle/labcoat/chemist +- Didn't return an Initialize hint +Path : /obj/item/clothing/neck/stethoscope +- Didn't return an Initialize hint +Path : /obj/item/clothing/neck/cloak/hop +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/rank/head_of_personnel +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/rank/head_of_personnel/skirt +- Didn't return an Initialize hint +Path : /obj/item/clothing/head/hopcap +- Didn't return an Initialize hint +Path : /obj/item/clothing/head/hopcap/beret +- Didn't return an Initialize hint +Path : /obj/item/clothing/suit/armor/vest/alt +- Didn't return an Initialize hint +Path : /obj/item/clothing/head/hooded/winterhood/hop +- Didn't return an Initialize hint +Path : /obj/item/clothing/suit/hooded/wintercoat/hop +- Didn't return an Initialize hint +Path : /obj/item/clothing/suit/radiation +- Didn't return an Initialize hint +Path : /obj/item/clothing/head/radiation +- Didn't return an Initialize hint +Path : /obj/item/clothing/mask/facehugger/lamarr +- Didn't return an Initialize hint +Path : /obj/item/clothing/accessory/armband/science +- Didn't return an Initialize hint +Path : /obj/item/clothing/accessory/armband/cargo +- Didn't return an Initialize hint +Path : /obj/item/clothing/head/helmet/space/hardsuit/medical +- Didn't return an Initialize hint +Path : /obj/item/clothing/suit/space/hardsuit/medical +- Didn't return an Initialize hint +Path : /obj/item/clothing/neck/cloak/rd +- Didn't return an Initialize hint +Path : /obj/item/clothing/head/beret/rd +- Didn't return an Initialize hint +Path : /obj/item/clothing/suit/toggle/labcoat +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/rank/research_director +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/rank/research_director/skirt +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/rank/research_director/alt +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/rank/research_director/alt/skirt +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/rank/research_director/turtleneck +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/rank/research_director/turtleneck/skirt +- Didn't return an Initialize hint +Path : /obj/item/clothing/suit/armor/reactive/teleport +- Didn't return an Initialize hint +Path : /obj/item/clothing/head/hooded/winterhood/rd +- Didn't return an Initialize hint +Path : /obj/item/clothing/suit/hooded/wintercoat/rd +- Didn't return an Initialize hint +Path : /obj/item/clothing/head/helmet/space/hardsuit/rd +- Didn't return an Initialize hint +Path : /obj/item/clothing/suit/space/hardsuit/rd +- Didn't return an Initialize hint +Path : /obj/item/clothing/suit/bio_suit/general +- Didn't return an Initialize hint +Path : /obj/item/clothing/head/bio_hood/general +- Didn't return an Initialize hint +Path : /obj/item/clothing/glasses/hud/health +- Didn't return an Initialize hint +Path : /obj/item/clothing/suit/bio_suit/janitor +- Didn't return an Initialize hint +Path : /obj/item/clothing/head/bio_hood/janitor +- Didn't return an Initialize hint +Path : /obj/item/clothing/mask/muzzle +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/rank/vice +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/rank/miner/lavaland +- Didn't return an Initialize hint +Path : /obj/item/clothing/shoes/workboots/mining +- Didn't return an Initialize hint +Path : /obj/item/clothing/head/hooded/winterhood/miner +- Didn't return an Initialize hint +Path : /obj/item/clothing/suit/hooded/wintercoat/miner +- Didn't return an Initialize hint +Path : /obj/item/clothing/mask/breath/medical +- Didn't return an Initialize hint +Path : /obj/item/clothing/neck/cloak/cmo +- Didn't return an Initialize hint +Path : /obj/item/clothing/head/beret/cmo +- Didn't return an Initialize hint +Path : /obj/item/clothing/suit/bio_suit/cmo +- Didn't return an Initialize hint +Path : /obj/item/clothing/head/bio_hood/cmo +- Didn't return an Initialize hint +Path : /obj/item/clothing/suit/toggle/labcoat/cmo +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/rank/chief_medical_officer +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/rank/chief_medical_officer/skirt +- Didn't return an Initialize hint +Path : /obj/item/clothing/accessory/medal/ribbon/medical_doctor +- Didn't return an Initialize hint +Path : /obj/item/clothing/head/hooded/winterhood/cmo +- Didn't return an Initialize hint +Path : /obj/item/clothing/suit/hooded/wintercoat/cmo +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/rank/chief_medical_officer/turtleneck +- Didn't return an Initialize hint +Path : /obj/item/clothing/gloves/color/yellow +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/assistantformal +- Didn't return an Initialize hint +Path : /obj/item/clothing/head/cone +- Didn't return an Initialize hint +Path : /obj/item/clothing/accessory/armband/engine +- Didn't return an Initialize hint +Path : /obj/item/clothing/suit/fire/atmos +- Didn't return an Initialize hint +Path : /obj/item/clothing/head/hardhat/atmos +- Didn't return an Initialize hint +Path : /obj/item/clothing/glasses/meson/engine/tray +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/color/lightpurple +- Didn't return an Initialize hint +Path : /obj/item/clothing/head/helmet/space/hardsuit/engine/atmos +- Didn't return an Initialize hint +Path : /obj/item/clothing/suit/space/hardsuit/engine/atmos +- Didn't return an Initialize hint +Path : /obj/item/clothing/suit/bio_suit/virology +- Didn't return an Initialize hint +Path : /obj/item/clothing/head/bio_hood/virology +- Didn't return an Initialize hint +Path : /obj/structure/closet/secure_closet/freezer/kitchen/maintenance +- Didn't return an Initialize hint +Path : /obj/item/clothing/head/kitty +- Didn't return an Initialize hint +Path : /obj/item/clothing/accessory/maidapron +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/maid +- Didn't return an Initialize hint +Path : /obj/item/clothing/head/helmet/space/hardsuit/engine/elite +- Didn't return an Initialize hint +Path : /obj/item/clothing/suit/space/hardsuit/engine/elite +- Didn't return an Initialize hint +Path : /obj/item/clothing/shoes/magboots/advance +- Didn't return an Initialize hint +Path : /obj/item/clothing/neck/cloak/ce +- Didn't return an Initialize hint +Path : /obj/item/clothing/head/beret/ce +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/rank/chief_engineer +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/rank/chief_engineer/skirt +- Didn't return an Initialize hint +Path : /obj/item/clothing/head/hardhat/white +- Didn't return an Initialize hint +Path : /obj/item/clothing/glasses/meson/engine +- Didn't return an Initialize hint +Path : /obj/item/clothing/accessory/medal/engineer +- Didn't return an Initialize hint +Path : /obj/item/clothing/head/hooded/winterhood/ce +- Didn't return an Initialize hint +Path : /obj/item/clothing/suit/hooded/wintercoat/ce +- Didn't return an Initialize hint +Path : /obj/item/clothing/gloves/color/grey +- Didn't return an Initialize hint +Path : /obj/item/clothing/head/helmet/space/hardsuit/engine +- Didn't return an Initialize hint +Path : /obj/item/clothing/suit/space/hardsuit/engine +- Didn't return an Initialize hint +Path : /obj/item/clothing/accessory/medal/greytide +- Didn't return an Initialize hint +Path : /obj/item/clothing/head/hooded/winterhood/engineering +- Didn't return an Initialize hint +Path : /obj/item/clothing/suit/hooded/wintercoat/engineering +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/rank/engineer +- Didn't return an Initialize hint +Path : /obj/item/clothing/shoes/workboots +- Didn't return an Initialize hint +Path : /obj/item/clothing/head/hooded/explorer +- Didn't return an Initialize hint +Path : /obj/item/clothing/suit/hooded/explorer/standard +- Didn't return an Initialize hint +Path : /obj/item/clothing/mask/gas/explorer +- Didn't return an Initialize hint +Path : /obj/item/clothing/head/helmet/roman/legionnaire +- Didn't return an Initialize hint +Path : /obj/item/clothing/shoes/combat +- Didn't return an Initialize hint +Path : /obj/item/clothing/mask/gas/syndicate +- Didn't return an Initialize hint +Path : /obj/item/clothing/head/helmet/space/hardsuit/syndi +- Didn't return an Initialize hint +Path : /obj/item/clothing/suit/space/hardsuit/syndi +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/rank/clown +- Didn't return an Initialize hint +Path : /obj/item/clothing/shoes/clown_shoes +- Didn't return an Initialize hint +Path : /obj/item/clothing/mask/gas/clown_hat +- Didn't return an Initialize hint +Path : /obj/item/clothing/head/helmet/space/orange +- Didn't return an Initialize hint +Path : /obj/item/clothing/suit/space/orange +- Didn't return an Initialize hint +Path : /obj/item/clothing/shoes/sandal +- Didn't return an Initialize hint +Path : /obj/item/clothing/neck/tie/black +- Didn't return an Initialize hint +Path : /obj/item/clothing/gloves/color/white +- Didn't return an Initialize hint +Path : /obj/item/clothing/head/helmet/space/syndicate/green/dark +- Didn't return an Initialize hint +Path : /obj/item/clothing/suit/space/syndicate/green/dark +- Didn't return an Initialize hint +Path : /obj/item/clothing/glasses/regular/hipster +- Didn't return an Initialize hint +Path : /obj/item/clothing/mask/cigarette/dromedary +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/overalls +- Didn't return an Initialize hint +Path : /obj/item/clothing/suit/apron +- Didn't return an Initialize hint +Path : /obj/structure/closet/secure_closet/freezer +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/rank/centcom_officer +- Didn't return an Initialize hint +Path : /obj/item/clothing/head/helmet/space/nasavoid +- Didn't return an Initialize hint +Path : /obj/item/clothing/suit/space/nasavoid +- Didn't return an Initialize hint +Path : /obj/item/clothing/suit/space/syndicate/orange +- Didn't return an Initialize hint +Path : /obj/item/clothing/head/helmet/space/syndicate/orange +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/soviet +- Didn't return an Initialize hint +Path : /obj/item/clothing/head/ushanka +- Didn't return an Initialize hint +Path : /obj/item/clothing/head/hooded/winterhood/science +- Didn't return an Initialize hint +Path : /obj/item/clothing/suit/hooded/wintercoat/science +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/rank/scientist +- Didn't return an Initialize hint +Path : /obj/item/clothing/suit/toggle/labcoat/science +- Didn't return an Initialize hint +Path : /obj/item/clothing/mask/facehugger/dead +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/pants/classicjeans +- Didn't return an Initialize hint +Path : /obj/item/clothing/neck/scarf +- Didn't return an Initialize hint +Path : /obj/item/clothing/neck/stripedgreenscarf +- Didn't return an Initialize hint +Path : /obj/item/clothing/head/chameleon +- Didn't return an Initialize hint +Path : /obj/item/clothing/suit/chameleon +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/chameleon +- Didn't return an Initialize hint +Path : /obj/item/clothing/shoes/chameleon +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/rank/centcom_commander +- Didn't return an Initialize hint +Path : /obj/item/clothing/head/centhat +- Didn't return an Initialize hint +Path : /obj/item/integrated_circuit/passive/power/chemical_cell +- Didn't return an Initialize hint +Path : /obj/item/integrated_circuit/atmospherics/pump/volume +- Didn't return an Initialize hint +Path : /obj/item/integrated_circuit/atmospherics/pump/vent +- Didn't return an Initialize hint +Path : /obj/item/integrated_circuit/atmospherics/pump/filter +- Didn't return an Initialize hint +Path : /obj/item/integrated_circuit/atmospherics/pump/mixer +- Didn't return an Initialize hint +Path : /obj/item/integrated_circuit/atmospherics/pump +- Didn't return an Initialize hint +Path : /obj/item/integrated_circuit/atmospherics/connector +- Didn't return an Initialize hint +Path : /obj/item/integrated_circuit/atmospherics/tank/large +- Didn't return an Initialize hint +Path : /obj/item/integrated_circuit/atmospherics/tank/freezer/heater +- Didn't return an Initialize hint +Path : /obj/item/integrated_circuit/atmospherics/tank/freezer +- Didn't return an Initialize hint +Path : /obj/item/integrated_circuit/atmospherics/tank +- Didn't return an Initialize hint +Path : /obj/item/integrated_circuit/atmospherics/cooler/heater +- Didn't return an Initialize hint +Path : /obj/item/integrated_circuit/atmospherics/cooler +- Didn't return an Initialize hint +Path : /obj/item/integrated_circuit/atmospherics +- Didn't return an Initialize hint +Path : /obj/item/clothing/suit/space/syndicate +- Didn't return an Initialize hint +Path : /obj/item/clothing/head/helmet/space/syndicate +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/color/yellow +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/rank/medical +- Didn't return an Initialize hint +Path : /obj/item/clothing/head/hooded/winterhood/medical +- Didn't return an Initialize hint +Path : /obj/item/clothing/suit/hooded/wintercoat/medical +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/rank/nursesuit +- Didn't return an Initialize hint +Path : /obj/item/clothing/head/nursehat +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/rank/medical/blue +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/rank/medical/green +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/rank/medical/purple +- Didn't return an Initialize hint +Path : /obj/item/clothing/suit/toggle/labcoat/emt +- Didn't return an Initialize hint +Path : /obj/item/clothing/head/soft/emt +- Didn't return an Initialize hint + diff --git a/data/logs/2019/12/03/round-23.40.49/newscaster.json b/data/logs/2019/12/03/round-23.40.49/newscaster.json new file mode 100644 index 00000000..cbaaa161 --- /dev/null +++ b/data/logs/2019/12/03/round-23.40.49/newscaster.json @@ -0,0 +1 @@ +{"1":{"channel name":"Station Announcements","author":"SS13","censored":0,"author censored":0,"messages":[{"author":"Central Command","time stamp":"12:19:53","censored":0,"author censored":0,"photo file":"","photo caption":"","body":"Security Report

Thanks to the tireless efforts of our security and intelligence divisions, there are currently no credible threats to Festive Country Eight. All station construction projects have been authorized. Have a secure shift!","comments":[]}]}} diff --git a/data/logs/2019/12/03/round-23.40.49/overlay.log b/data/logs/2019/12/03/round-23.40.49/overlay.log new file mode 100644 index 00000000..74fb5417 --- /dev/null +++ b/data/logs/2019/12/03/round-23.40.49/overlay.log @@ -0,0 +1,650 @@ +/turf/closed/mineral/random/volcanic => 140ms (29832) (avg:0.0046929470263421535) +/turf/open/lava/smooth/lava_land_surface => 44ms (9976) (avg:0.0044105853885412216) +/turf/closed/mineral/iron/volcanic => 19ms (3852) (avg:0.0049325027503073215) +/turf/closed/wall => 18ms (2939) (avg:0.0061245323158800602) +/turf/closed/indestructible/riveted/boss => 17ms (3129) (avg:0.0054330457933247089) +/turf/closed/indestructible/riveted => 16ms (3507) (avg:0.0045623038895428181) +/obj/structure/lattice => 14ms (2062) (avg:0.0067895245738327503) +/obj/structure/window/reinforced/fulltile => 13ms (1578) (avg:0.0082382764667272568) +/turf/open/floor/plasteel => 10ms (3809) (avg:0.0026253610849380493) +/turf/closed/wall/r_wall => 10ms (1831) (avg:0.0054614963009953499) +/turf/open/floor/plasteel/dark => 8ms (2303) (avg:0.0034737298265099525) +/obj/machinery/door/airlock/public/glass => 8ms (202) (avg:0.039603959769010544) +/turf/closed/mineral/random/labormineral/volcanic => 7ms (2345) (avg:0.0029850746504962444) +/mob/living/carbon/human => 7ms (17) (avg:0.4117647111415863) +/obj/structure/table => 6ms (517) (avg:0.011605415493249893) +/obj/item/stock_parts/cell/emergency_light => 5ms (942) (avg:0.0053078555501997471) +/turf/closed/mineral/gold/volcanic => 5ms (419) (avg:0.011933173984289169) +/obj/machinery/door/airlock/maintenance => 5ms (175) (avg:0.02857142873108387) +/obj/machinery/door/airlock/maintenance/abandoned => 5ms (65) (avg:0.076923079788684845) +/turf/closed/mineral/plasma/volcanic => 4ms (967) (avg:0.0041365046054124832) +/obj/effect/decal/cleanable/dirt => 4ms (860) (avg:0.0046511627733707428) +/turf/closed/mineral/silver/volcanic => 3ms (514) (avg:0.0058365757577121258) +/turf/closed/mineral/titanium/volcanic => 3ms (467) (avg:0.0064239827916026115) +/obj/machinery/clonepod => 3ms (432) (avg:0.0069444444961845875) +/turf/open/floor/carpet => 3ms (327) (avg:0.0091743115335702896) +/turf/closed/mineral/random => 3ms (319) (avg:0.0094043882563710213) +/obj/machinery/door/airlock/external => 3ms (248) (avg:0.012096773833036423) +/turf/open/floor/plasteel/white => 3ms (232) (avg:0.012931034900248051) +/obj/structure/table/reinforced => 2ms (588) (avg:0.0034013604745268822) +/obj/machinery/light/small => 2ms (526) (avg:0.0038022813387215137) +/turf/closed/mineral => 2ms (513) (avg:0.0038986355066299438) +/turf/closed/wall/mineral/plastitanium => 2ms (185) (avg:0.010810811072587967) +/obj/machinery/door/airlock/centcom => 2ms (147) (avg:0.013605441898107529) +/obj/machinery/door/airlock => 2ms (104) (avg:0.019230769947171211) +/obj/screen/parallax_layer/layer_1 => 2ms (4) (avg:0.5) +/obj/machinery/light => 1ms (1008) (avg:0.00099206354934722185) +/turf/closed/wall/mineral/titanium => 1ms (470) (avg:0.0021276595070958138) +/obj/structure/lattice/catwalk => 1ms (386) (avg:0.0025906735099852085) +/turf/closed/mineral/volcanic/lava_land_surface => 1ms (379) (avg:0.0026385225355625153) +/turf/open/indestructible/hierophant => 1ms (328) (avg:0.0030487803742289543) +/obj/structure/table/wood => 1ms (302) (avg:0.0033112582750618458) +/obj/machinery/firealarm => 1ms (251) (avg:0.0039840638637542725) +/turf/closed/mineral/random/high_chance/volcanic => 1ms (241) (avg:0.0041493778117001057) +/obj/machinery/power/solar => 1ms (240) (avg:0.0041666668839752674) +/turf/open/floor/plating => 1ms (237) (avg:0.0042194090783596039) +/turf/closed/mineral/uranium/volcanic => 1ms (226) (avg:0.0044247787445783615) +/obj/machinery/atmospherics/pipe/manifold/supply/hidden => 1ms (183) (avg:0.0054644807241857052) +/turf/closed/indestructible => 1ms (168) (avg:0.0059523810632526875) +/turf/closed/wall/mineral/titanium/nodiagonal => 1ms (142) (avg:0.007042253389954567) +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden => 1ms (138) (avg:0.0072463769465684891) +/obj/item/stock_parts/cell/upgraded => 1ms (137) (avg:0.0072992700152099133) +/turf/closed/mineral/gibtonite/volcanic => 1ms (133) (avg:0.0075187971815466881) +/turf/closed/indestructible/fakeglass => 1ms (90) (avg:0.011111111380159855) +/obj/item/screwdriver => 1ms (88) (avg:0.011363636702299118) +/obj/machinery/power/solar_control => 1ms (85) (avg:0.011764706112444401) +/obj/structure/table/glass => 1ms (71) (avg:0.014084506779909134) +/obj/item/reagent_containers/glass/beaker/large => 1ms (56) (avg:0.01785714365541935) +/obj/item/reagent_containers/syringe/charcoal => 1ms (50) (avg:0.019999999552965164) +/turf/open/floor/carpet/black => 1ms (48) (avg:0.02083333395421505) +/obj/machinery/door/airlock/command/glass => 1ms (36) (avg:0.02777777798473835) +/obj/item/storage/toolbox/mechanical => 1ms (35) (avg:0.02857142873108387) +/obj/machinery/door/airlock/medical/glass => 1ms (32) (avg:0.03125) +/turf/open/space/basic => 1ms (31) (avg:0.032258063554763794) +/turf/closed/mineral/plasma => 1ms (28) (avg:0.035714287310838699) +/obj/structure/window/paperframe => 1ms (27) (avg:0.037037037312984467) +/mob/living/carbon/human/dummy => 1ms (25) (avg:0.039999999105930328) +/turf/closed/wall/mineral/wood => 1ms (21) (avg:0.0476190485060215) +/obj/machinery/door/airlock/security => 1ms (19) (avg:0.052631579339504242) +/obj/item/storage/crayons => 1ms (16) (avg:0.0625) +/obj/machinery/door/airlock/virology/glass => 1ms (16) (avg:0.0625) +/obj/machinery/power/smes/engineering => 1ms (15) (avg:0.066666670143604279) +/obj/machinery/power/smes/magical => 1ms (10) (avg:0.10000000149011612) +/obj/machinery/door/airlock/engineering/abandoned => 1ms (8) (avg:0.125) +/obj/machinery/computer/bounty => 1ms (6) (avg:0.1666666716337204) +/turf/closed/mineral/gold => 1ms (6) (avg:0.1666666716337204) +/obj/structure/door_assembly/door_assembly_mai => 1ms (4) (avg:0.25) +/obj/item/gun/energy/laser/practice => 1ms (4) (avg:0.25) +/obj/structure/door_assembly/door_assembly_ext => 1ms (1) (avg:1) +/obj/item/storage/box/chemimp => 1ms (1) (avg:1) +/obj/machinery/airalarm => 0ms (313) (avg:0) +/turf/open/space => 0ms (283) (avg:0) +/obj/structure/alien/weeds => 0ms (239) (avg:0) +/turf/open/floor/holofloor => 0ms (156) (avg:0) +/obj/machinery/disposal/bin => 0ms (150) (avg:0) +/turf/closed/wall/mineral/titanium/interior => 0ms (147) (avg:0) +/obj/structure/window/fulltile => 0ms (142) (avg:0) +/turf/closed/indestructible/riveted/uranium => 0ms (131) (avg:0) +/turf/closed/mineral/random/high_chance => 0ms (126) (avg:0) +/obj/item/stock_parts/cell/high/empty => 0ms (120) (avg:0) +/turf/open/indestructible/hierophant/two => 0ms (113) (avg:0) +/obj/item/stock_parts/cell => 0ms (105) (avg:0) +/turf/open/floor/engine => 0ms (97) (avg:0) +/turf/closed/indestructible/riveted/hierophant => 0ms (88) (avg:0) +/obj/item/stock_parts/cell/high => 0ms (86) (avg:0) +/obj/structure/alien/resin/wall => 0ms (83) (avg:0) +/turf/open/floor/carpet/royalblue => 0ms (81) (avg:0) +/obj/machinery/newscaster => 0ms (76) (avg:0) +/obj/structure/window/shuttle => 0ms (74) (avg:0) +/obj/machinery/atmospherics/components/binary/passive_gate => 0ms (72) (avg:0) +/obj/item/wirecutters => 0ms (71) (avg:0) +/turf/open/floor/plasteel/white/corner => 0ms (63) (avg:0) +/obj/structure/closet/emcloset => 0ms (61) (avg:0) +/obj/item/paper_bin => 0ms (60) (avg:0) +/obj/structure/closet => 0ms (58) (avg:0) +/turf/open/floor/plasteel/cafeteria => 0ms (57) (avg:0) +/turf/closed/wall/mineral/diamond => 0ms (56) (avg:0) +/obj/item/weldingtool => 0ms (55) (avg:0) +/obj/machinery/door/airlock/security/glass => 0ms (51) (avg:0) +/turf/closed/mineral/diamond/volcanic => 0ms (44) (avg:0) +/obj/item/storage/toolbox/emergency => 0ms (42) (avg:0) +/turf/closed/wall/mineral/cult => 0ms (41) (avg:0) +/obj/item/reagent_containers/glass/beaker => 0ms (40) (avg:0) +/turf/closed/mineral/ash_rock => 0ms (40) (avg:0) +/obj/item/clipboard => 0ms (39) (avg:0) +/obj/machinery/door/airlock/engineering => 0ms (39) (avg:0) +/turf/closed/mineral/bscrystal/volcanic => 0ms (38) (avg:0) +/turf/open/floor/mineral/plastitanium/red => 0ms (37) (avg:0) +/turf/open/floor/plating/airless => 0ms (36) (avg:0) +/obj/machinery/power/solar/fake => 0ms (36) (avg:0) +/obj/machinery/atmospherics/pipe/manifold/general/visible => 0ms (36) (avg:0) +/obj/structure/window/plasma/reinforced/fulltile => 0ms (36) (avg:0) +/obj/machinery/door/airlock/hatch => 0ms (35) (avg:0) +/obj/machinery/door/airlock/titanium => 0ms (34) (avg:0) +/obj/machinery/computer/secure_data => 0ms (33) (avg:0) +/obj/machinery/door/airlock/command => 0ms (29) (avg:0) +/turf/closed/wall/mineral/titanium/overspace => 0ms (29) (avg:0) +/obj/machinery/power/smes => 0ms (28) (avg:0) +/obj/machinery/door/airlock/research => 0ms (28) (avg:0) +/obj/machinery/airalarm/all_access => 0ms (28) (avg:0) +/obj/item/gun/energy/laser => 0ms (27) (avg:0) +/turf/open/floor/circuit/green/off => 0ms (26) (avg:0) +/obj/machinery/door/airlock/medical => 0ms (26) (avg:0) +/obj/machinery/door/airlock/mining/glass => 0ms (26) (avg:0) +/obj/machinery/newscaster/security_unit => 0ms (26) (avg:0) +/obj/structure/lattice/clockwork => 0ms (25) (avg:0) +/mob/living/simple_animal/hostile/poison/bees => 0ms (24) (avg:0) +/obj/machinery/door/airlock/silver => 0ms (24) (avg:0) +/obj/machinery/door/airlock/engineering/glass => 0ms (24) (avg:0) +/turf/closed/wall/clockwork => 0ms (24) (avg:0) +/obj/effect/clockwork/overlay/wall => 0ms (24) (avg:0) +/obj/item/reagent_containers/glass/bottle/epinephrine => 0ms (23) (avg:0) +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden => 0ms (23) (avg:0) +/obj/machinery/portable_atmospherics/canister/oxygen => 0ms (22) (avg:0) +/obj/structure/closet/secure_closet/personal => 0ms (21) (avg:0) +/obj/item/disk/plantgene => 0ms (21) (avg:0) +/obj/structure/table/wood/fancy => 0ms (21) (avg:0) +/obj/machinery/light/small/built => 0ms (21) (avg:0) +/obj/item/stock_parts/cell/high/plus => 0ms (20) (avg:0) +/obj/machinery/portable_atmospherics/canister/air => 0ms (19) (avg:0) +/obj/item/storage/belt/security/full => 0ms (19) (avg:0) +/obj/item/reagent_containers/glass/bottle/charcoal => 0ms (19) (avg:0) +/turf/closed/mineral/iron => 0ms (19) (avg:0) +/obj/machinery/computer/security => 0ms (18) (avg:0) +/obj/machinery/atmospherics/components/unary/vent_pump/on => 0ms (18) (avg:0) +/obj/structure/table/abductor => 0ms (18) (avg:0) +/turf/closed/wall/mineral/abductor => 0ms (18) (avg:0) +/obj/structure/closet/crate/bin => 0ms (17) (avg:0) +/obj/item/storage/toolbox/electrical => 0ms (17) (avg:0) +/obj/item/reagent_containers/blood/random => 0ms (16) (avg:0) +/obj/machinery/door/airlock/maintenance_hatch => 0ms (16) (avg:0) +/turf/open/floor/holofloor/carpet => 0ms (16) (avg:0) +/obj/machinery/computer/med_data => 0ms (15) (avg:0) +/turf/open/floor/plasteel/dark/corner => 0ms (15) (avg:0) +/obj/machinery/atmospherics/pipe/manifold/cyan/visible => 0ms (15) (avg:0) +/turf/closed/mineral/silver => 0ms (15) (avg:0) +/obj/structure/window/plastitanium => 0ms (15) (avg:0) +/mob/living/simple_animal/slime => 0ms (15) (avg:0) +/obj/structure/transit_tube/horizontal => 0ms (14) (avg:0) +/obj/item/storage/box/handcuffs => 0ms (14) (avg:0) +/obj/machinery/computer/crew => 0ms (13) (avg:0) +/obj/item/storage/box/lights/mixed => 0ms (13) (avg:0) +/obj/item/storage/box/syringes => 0ms (13) (avg:0) +/obj/structure/closet/firecloset => 0ms (13) (avg:0) +/obj/machinery/computer/operating => 0ms (12) (avg:0) +/obj/machinery/computer/shuttle/mining => 0ms (12) (avg:0) +/turf/open/floor/circuit/red => 0ms (12) (avg:0) +/turf/open/floor/circuit => 0ms (12) (avg:0) +/turf/open/floor/plasteel/showroomfloor => 0ms (12) (avg:0) +/turf/open/floor/plasteel/freezer => 0ms (12) (avg:0) +/obj/machinery/door/airlock/highsecurity => 0ms (12) (avg:0) +/obj/item/gun/energy/e_gun/turret => 0ms (12) (avg:0) +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden => 0ms (12) (avg:0) +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers => 0ms (12) (avg:0) +/turf/closed/mineral/titanium => 0ms (12) (avg:0) +/turf/closed/indestructible/riveted/boss/see_through => 0ms (12) (avg:0) +/mob/living/carbon/monkey => 0ms (11) (avg:0) +/obj/item/gun/ballistic/automatic/wt550 => 0ms (11) (avg:0) +/obj/machinery/computer/communications => 0ms (11) (avg:0) +/obj/item/gun/energy/e_gun => 0ms (11) (avg:0) +/obj/machinery/computer/station_alert => 0ms (11) (avg:0) +/obj/item/stack/ore/bluespace_crystal/artificial => 0ms (11) (avg:0) +/obj/item/reagent_containers/glass/bottle/morphine => 0ms (11) (avg:0) +/obj/structure/alien/resin/membrane => 0ms (11) (avg:0) +/obj/structure/closet/abductor => 0ms (10) (avg:0) +/obj/item/lighter => 0ms (10) (avg:0) +/obj/structure/closet/secure_closet/security => 0ms (10) (avg:0) +/obj/machinery/computer/cargo => 0ms (10) (avg:0) +/obj/item/clothing/under/polychromic/shirt => 0ms (10) (avg:0) +/obj/item/clothing/under/polychromic/skirt => 0ms (10) (avg:0) +/obj/item/storage/box => 0ms (10) (avg:0) +/obj/machinery/door/airlock/research/glass => 0ms (10) (avg:0) +/obj/item/storage/box/emptysandbags => 0ms (10) (avg:0) +/obj/machinery/door/airlock/atmos => 0ms (10) (avg:0) +/turf/open/floor/plasteel/airless => 0ms (10) (avg:0) +/obj/machinery/atmospherics/components/unary/vent_scrubber/on => 0ms (10) (avg:0) +/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible => 0ms (10) (avg:0) +/turf/closed/mineral/diamond => 0ms (10) (avg:0) +/obj/machinery/computer/mech_bay_power_console => 0ms (9) (avg:0) +/obj/machinery/computer/prisoner => 0ms (9) (avg:0) +/obj/machinery/computer/security/mining => 0ms (9) (avg:0) +/obj/item/storage/box/beakers => 0ms (9) (avg:0) +/obj/item/clothing/under/polychromic/jumpsuit => 0ms (9) (avg:0) +/obj/item/clothing/under/polychromic/kilt => 0ms (9) (avg:0) +/obj/item/clothing/under/polychromic/shorts => 0ms (9) (avg:0) +/turf/open/lava/smooth => 0ms (9) (avg:0) +/obj/structure/closet/crate/secure/loot => 0ms (8) (avg:0) +/obj/item/storage/box/flashbangs => 0ms (8) (avg:0) +/obj/machinery/computer/card/centcom => 0ms (8) (avg:0) +/obj/item/reagent_containers/syringe/epinephrine => 0ms (8) (avg:0) +/obj/machinery/computer/shuttle/labor => 0ms (8) (avg:0) +/obj/machinery/computer/atmos_alert => 0ms (8) (avg:0) +/obj/machinery/door/airlock/atmos/abandoned => 0ms (8) (avg:0) +/obj/item/storage/box/rxglasses => 0ms (8) (avg:0) +/obj/structure/closet/radiation => 0ms (8) (avg:0) +/obj/machinery/computer/teleporter => 0ms (8) (avg:0) +/obj/machinery/atmospherics/components/unary/cryo_cell => 0ms (8) (avg:0) +/obj/machinery/portable_atmospherics/canister/nitrous_oxide => 0ms (7) (avg:0) +/obj/machinery/portable_atmospherics/canister/toxins => 0ms (7) (avg:0) +/obj/item/gps/internal => 0ms (7) (avg:0) +/obj/machinery/computer/med_data/laptop => 0ms (7) (avg:0) +/obj/item/stock_parts/cell/upgraded/plus => 0ms (7) (avg:0) +/obj/structure/closet/secure_closet/brig => 0ms (7) (avg:0) +/obj/structure/closet/toolcloset => 0ms (7) (avg:0) +/obj/item/disk/data => 0ms (7) (avg:0) +/obj/item/stock_parts/cell/emproof => 0ms (7) (avg:0) +/obj/item/gun/energy/kinetic_accelerator => 0ms (7) (avg:0) +/obj/item/reagent_containers/glass/beaker/waterbottle/large => 0ms (7) (avg:0) +/obj/machinery/atmospherics/pipe/manifold/yellow/visible => 0ms (7) (avg:0) +/obj/item/reagent_containers/blood/OMinus => 0ms (6) (avg:0) +/obj/item/defibrillator/loaded => 0ms (6) (avg:0) +/obj/machinery/door/airlock/wood => 0ms (6) (avg:0) +/obj/item/dice/d20 => 0ms (6) (avg:0) +/obj/item/storage/box/ids => 0ms (6) (avg:0) +/obj/structure/closet/syndicate/personal => 0ms (6) (avg:0) +/obj/item/paicard => 0ms (6) (avg:0) +/obj/machinery/computer/cryopod => 0ms (6) (avg:0) +/obj/structure/closet/secure_closet/security/sec => 0ms (6) (avg:0) +/obj/item/storage/box/bodybags => 0ms (6) (avg:0) +/obj/item/storage/box/pillbottles => 0ms (6) (avg:0) +/obj/item/storage/box/medsprays => 0ms (6) (avg:0) +/obj/machinery/computer/monitor => 0ms (6) (avg:0) +/obj/machinery/computer/card => 0ms (6) (avg:0) +/obj/structure/closet/l3closet/scientist => 0ms (6) (avg:0) +/obj/item/reagent_containers/glass/beaker/cryoxadone => 0ms (6) (avg:0) +/obj/structure/closet/secure_closet/miner => 0ms (6) (avg:0) +/obj/machinery/door/airlock/virology => 0ms (6) (avg:0) +/obj/item/weldingtool/largetank => 0ms (6) (avg:0) +/obj/item/gun/energy/lasercannon => 0ms (6) (avg:0) +/obj/structure/lattice/catwalk/clockwork => 0ms (6) (avg:0) +/turf/closed/mineral/bananium => 0ms (6) (avg:0) +/obj/machinery/portable_atmospherics/canister/nitrogen => 0ms (5) (avg:0) +/obj/item/storage/box/alienhandcuffs => 0ms (5) (avg:0) +/obj/item/clothing/head/helmet/space/plasmaman => 0ms (5) (avg:0) +/obj/item/storage/box/matches => 0ms (5) (avg:0) +/obj/structure/closet/secure_closet/freezer/meat => 0ms (5) (avg:0) +/obj/machinery/computer/telecrystals/uplinker => 0ms (5) (avg:0) +/obj/item/dice/d4 => 0ms (5) (avg:0) +/obj/item/dice/d10 => 0ms (5) (avg:0) +/obj/item/gps/mining => 0ms (5) (avg:0) +/obj/item/reagent_containers/syringe/lethal/execution => 0ms (5) (avg:0) +/obj/item/pda => 0ms (5) (avg:0) +/obj/structure/closet/secure_closet/personal/patient => 0ms (5) (avg:0) +/obj/structure/closet/l3closet => 0ms (5) (avg:0) +/obj/item/reagent_containers/syringe/antiviral => 0ms (5) (avg:0) +/obj/structure/closet/emcloset/anchored => 0ms (5) (avg:0) +/obj/machinery/atmospherics/pipe/manifold/supply/visible => 0ms (5) (avg:0) +/obj/machinery/atmospherics/components/trinary/filter/flipped/critical => 0ms (5) (avg:0) +/obj/structure/table/wood/poker => 0ms (5) (avg:0) +/turf/closed/mineral/uranium => 0ms (5) (avg:0) +/turf/open/floor/mineral/plastitanium => 0ms (5) (avg:0) +/obj/screen/movable/action_button/hide_toggle => 0ms (4) (avg:0) +/obj/screen/parallax_layer/layer_2 => 0ms (4) (avg:0) +/obj/machinery/portable_atmospherics/canister/carbon_dioxide => 0ms (4) (avg:0) +/obj/structure/transit_tube/crossing/horizontal => 0ms (4) (avg:0) +/obj/machinery/computer/camera_advanced/abductor => 0ms (4) (avg:0) +/obj/item/storage/box/drinkingglasses => 0ms (4) (avg:0) +/obj/item/reagent_containers/blood/AMinus => 0ms (4) (avg:0) +/obj/item/reagent_containers/blood/BMinus => 0ms (4) (avg:0) +/obj/item/reagent_containers/blood/BPlus => 0ms (4) (avg:0) +/obj/item/reagent_containers/blood/OPlus => 0ms (4) (avg:0) +/obj/item/reagent_containers/blood/lizard => 0ms (4) (avg:0) +/obj/structure/closet/cardboard => 0ms (4) (avg:0) +/obj/item/storage/box/mousetraps => 0ms (4) (avg:0) +/obj/item/storage/box/silver_ids => 0ms (4) (avg:0) +/obj/item/storage/box/teargas => 0ms (4) (avg:0) +/obj/item/storage/box/zipties => 0ms (4) (avg:0) +/obj/item/dice/d6 => 0ms (4) (avg:0) +/obj/item/dice/d8 => 0ms (4) (avg:0) +/obj/item/dice/d12 => 0ms (4) (avg:0) +/obj/machinery/computer/emergency_shuttle => 0ms (4) (avg:0) +/obj/machinery/computer/shuttle/white_ship => 0ms (4) (avg:0) +/obj/machinery/door/airlock/vault => 0ms (4) (avg:0) +/obj/machinery/computer/auxillary_base => 0ms (4) (avg:0) +/obj/machinery/modular_computer/console/preset/command => 0ms (4) (avg:0) +/obj/structure/closet/wardrobe/white => 0ms (4) (avg:0) +/obj/structure/closet/secure_closet/medical1 => 0ms (4) (avg:0) +/obj/item/reagent_containers/glass/bottle/toxin => 0ms (4) (avg:0) +/obj/machinery/modular_computer/console/preset/engineering => 0ms (4) (avg:0) +/obj/machinery/computer/cargo/request => 0ms (4) (avg:0) +/obj/structure/closet/wardrobe/black => 0ms (4) (avg:0) +/obj/machinery/computer/scan_consolenew => 0ms (4) (avg:0) +/obj/machinery/door/airlock/mining => 0ms (4) (avg:0) +/turf/open/floor/plasteel/checker => 0ms (4) (avg:0) +/obj/machinery/computer/atmos_control => 0ms (4) (avg:0) +/obj/machinery/computer/camera_advanced/xenobio => 0ms (4) (avg:0) +/obj/machinery/door/airlock/atmos/glass => 0ms (4) (avg:0) +/obj/item/storage/toolbox/syndicate => 0ms (4) (avg:0) +/obj/item/gps => 0ms (4) (avg:0) +/obj/item/stock_parts/cell/hyper => 0ms (4) (avg:0) +/obj/machinery/atmospherics/pipe/manifold/green/visible => 0ms (4) (avg:0) +/obj/machinery/atmospherics/components/unary/outlet_injector/on => 0ms (4) (avg:0) +/obj/screen/movable/action_button => 0ms (4) (avg:0) +/turf/closed/wall/mineral/plastitanium/nodiagonal => 0ms (4) (avg:0) +/obj/structure/closet/secure_closet/freezer/fridge => 0ms (3) (avg:0) +/obj/structure/closet/secure_closet/freezer/kitchen => 0ms (3) (avg:0) +/obj/structure/closet/secure_closet/hydroponics => 0ms (3) (avg:0) +/obj/item/storage/box/disks_plantgene => 0ms (3) (avg:0) +/obj/machinery/gibber => 0ms (3) (avg:0) +/obj/item/storage/box/emps => 0ms (3) (avg:0) +/obj/item/gun/energy/ionrifle => 0ms (3) (avg:0) +/obj/machinery/modular_computer/console/preset/research => 0ms (3) (avg:0) +/obj/item/gps/internal/base => 0ms (3) (avg:0) +/obj/structure/closet/secure_closet/personal/cabinet => 0ms (3) (avg:0) +/obj/structure/closet/wardrobe/cargotech => 0ms (3) (avg:0) +/obj/machinery/computer/arcade/orion_trail/kobayashi => 0ms (3) (avg:0) +/obj/item/gun/energy/e_gun/advtaser => 0ms (3) (avg:0) +/obj/structure/closet/wardrobe/mixed => 0ms (3) (avg:0) +/obj/item/clothing/under/polychromic/shortpants => 0ms (3) (avg:0) +/obj/item/gun/energy/laser/bluetag => 0ms (3) (avg:0) +/obj/item/gun/energy/laser/redtag => 0ms (3) (avg:0) +/obj/structure/closet/secure_closet/chemical => 0ms (3) (avg:0) +/obj/structure/closet/wardrobe/pjs => 0ms (3) (avg:0) +/obj/structure/tank_dispenser/oxygen => 0ms (3) (avg:0) +/obj/structure/closet/wardrobe/grey => 0ms (3) (avg:0) +/obj/item/clothing/neck/petcollar => 0ms (3) (avg:0) +/obj/structure/closet/secure_closet/medical3 => 0ms (3) (avg:0) +/obj/structure/closet/bombcloset => 0ms (3) (avg:0) +/obj/structure/tank_dispenser => 0ms (3) (avg:0) +/obj/item/twohanded/rcl/pre_loaded => 0ms (3) (avg:0) +/obj/structure/closet/secure_closet/engineering_personal => 0ms (3) (avg:0) +/obj/item/gun/ballistic/automatic/pistol/m1911 => 0ms (3) (avg:0) +/obj/machinery/door/airlock/freezer => 0ms (3) (avg:0) +/obj/item/gps/internal/dragon => 0ms (3) (avg:0) +/obj/machinery/atmospherics/components/trinary/filter => 0ms (3) (avg:0) +/obj/structure/table/wood/bar => 0ms (3) (avg:0) +/obj/structure/window/reinforced/tinted/fulltile => 0ms (3) (avg:0) +/obj/item/reagent_containers/glass/beaker/waterbottle => 0ms (3) (avg:0) +/obj/structure/transit_tube => 0ms (2) (avg:0) +/obj/item/toy/crayon/spraycan => 0ms (2) (avg:0) +/obj/machinery/computer/shuttle => 0ms (2) (avg:0) +/obj/structure/closet/secure_closet/ertMed => 0ms (2) (avg:0) +/obj/item/defibrillator/compact/combat/loaded => 0ms (2) (avg:0) +/obj/item/stock_parts/cell/infinite => 0ms (2) (avg:0) +/obj/structure/closet/secure_closet/ertSec => 0ms (2) (avg:0) +/obj/item/storage/box/flashes => 0ms (2) (avg:0) +/obj/structure/closet/secure_closet/ertEngi => 0ms (2) (avg:0) +/obj/item/storage/box/metalfoam => 0ms (2) (avg:0) +/obj/machinery/computer/camera_advanced => 0ms (2) (avg:0) +/obj/machinery/computer/shuttle/ferry => 0ms (2) (avg:0) +/obj/machinery/computer/monitor/secret => 0ms (2) (avg:0) +/obj/structure/closet/secure_closet/quartermaster => 0ms (2) (avg:0) +/obj/structure/closet/secure_closet/courtroom => 0ms (2) (avg:0) +/obj/screen/parallax_layer/layer_3 => 0ms (2) (avg:0) +/obj/machinery/computer/security/hos => 0ms (2) (avg:0) +/obj/machinery/computer/card/minor/hos => 0ms (2) (avg:0) +/obj/item/storage/box/firingpins => 0ms (2) (avg:0) +/obj/item/gun/energy/e_gun/dragnet => 0ms (2) (avg:0) +/obj/machinery/computer/gulag_teleporter_computer => 0ms (2) (avg:0) +/obj/machinery/computer/security/labor => 0ms (2) (avg:0) +/obj/machinery/computer/camera_advanced/base_construction => 0ms (2) (avg:0) +/obj/machinery/computer/holodeck => 0ms (2) (avg:0) +/obj/machinery/computer/bank_machine => 0ms (2) (avg:0) +/turf/open/floor/wood => 0ms (2) (avg:0) +/obj/structure/closet/secure_closet/freezer/cream_pie => 0ms (2) (avg:0) +/obj/structure/closet/wardrobe/green => 0ms (2) (avg:0) +/obj/structure/fireaxecabinet => 0ms (2) (avg:0) +/obj/item/storage/box/evidence => 0ms (2) (avg:0) +/obj/machinery/computer/upload/ai => 0ms (2) (avg:0) +/obj/machinery/computer/upload/borg => 0ms (2) (avg:0) +/obj/machinery/computer/rdconsole/robotics => 0ms (2) (avg:0) +/obj/machinery/computer/rdconsole/core => 0ms (2) (avg:0) +/obj/item/storage/box/masks => 0ms (2) (avg:0) +/obj/item/storage/box/gloves => 0ms (2) (avg:0) +/obj/machinery/computer/aifixer => 0ms (2) (avg:0) +/obj/machinery/computer/rdconsole/experiment => 0ms (2) (avg:0) +/obj/machinery/computer/robotics => 0ms (2) (avg:0) +/obj/machinery/computer/cloning => 0ms (2) (avg:0) +/obj/machinery/computer/mecha => 0ms (2) (avg:0) +/obj/machinery/airalarm/server => 0ms (2) (avg:0) +/obj/machinery/computer/security/qm => 0ms (2) (avg:0) +/obj/machinery/computer/rdservercontrol => 0ms (2) (avg:0) +/obj/machinery/computer/card/minor/rd => 0ms (2) (avg:0) +/obj/machinery/airalarm/unlocked => 0ms (2) (avg:0) +/obj/item/reagent_containers/glass/beaker/synthflesh => 0ms (2) (avg:0) +/obj/structure/closet/secure_closet/medical2 => 0ms (2) (avg:0) +/obj/machinery/computer/card/minor/cmo => 0ms (2) (avg:0) +/obj/machinery/door/airlock/research/glass/incinerator/toxmix_exterior => 0ms (2) (avg:0) +/obj/machinery/door/airlock/research/glass/incinerator/toxmix_interior => 0ms (2) (avg:0) +/obj/machinery/computer/atmos_control/tank/mix_tank => 0ms (2) (avg:0) +/obj/machinery/computer/atmos_control/tank/nitrous_tank => 0ms (2) (avg:0) +/obj/item/reagent_containers/glass/bottle/mutagen => 0ms (2) (avg:0) +/obj/machinery/announcement_system => 0ms (2) (avg:0) +/obj/machinery/computer/message_monitor => 0ms (2) (avg:0) +/obj/structure/closet/secure_closet/atmospherics => 0ms (2) (avg:0) +/obj/machinery/computer/telecomms/server => 0ms (2) (avg:0) +/obj/machinery/computer/atmos_control/tank/toxin_tank => 0ms (2) (avg:0) +/obj/machinery/computer/atmos_control/tank/carbon_tank => 0ms (2) (avg:0) +/obj/machinery/computer/telecomms/monitor => 0ms (2) (avg:0) +/obj/machinery/computer/atmos_control/tank/nitrogen_tank => 0ms (2) (avg:0) +/obj/machinery/computer/atmos_control/tank/oxygen_tank => 0ms (2) (avg:0) +/obj/machinery/computer/atmos_control/tank/air_tank => 0ms (2) (avg:0) +/obj/machinery/computer/apc_control => 0ms (2) (avg:0) +/obj/structure/closet/firecloset/full => 0ms (2) (avg:0) +/obj/machinery/computer/card/minor/ce => 0ms (2) (avg:0) +/obj/machinery/computer/turbine_computer => 0ms (2) (avg:0) +/obj/machinery/door/airlock/public/glass/incinerator/atmos_interior => 0ms (2) (avg:0) +/obj/machinery/door/airlock/public/glass/incinerator/atmos_exterior => 0ms (2) (avg:0) +/obj/machinery/computer/rdconsole/production => 0ms (2) (avg:0) +/obj/machinery/door/airlock/abandoned => 0ms (2) (avg:0) +/obj/machinery/door/airlock/engineering/glass/critical => 0ms (2) (avg:0) +/obj/structure/reflector/box/anchored => 0ms (2) (avg:0) +/obj/structure/reflector/single/anchored => 0ms (2) (avg:0) +/obj/machinery/computer/shuttle/labor/one_way => 0ms (2) (avg:0) +/obj/machinery/door/airlock/glass => 0ms (2) (avg:0) +/obj/structure/closet/secure_closet/freezer => 0ms (2) (avg:0) +/obj/structure/closet/malf/suits => 0ms (2) (avg:0) +/obj/item/gun/ballistic/automatic/pistol => 0ms (2) (avg:0) +/obj/item/gps/internal/colossus => 0ms (2) (avg:0) +/obj/machinery/atmospherics/pipe/manifold => 0ms (2) (avg:0) +/obj/machinery/atmospherics/pipe/manifold4w/general => 0ms (2) (avg:0) +/obj/machinery/atmospherics/pipe/manifold4w => 0ms (2) (avg:0) +/obj/structure/falsewall => 0ms (2) (avg:0) +/obj/structure/alien/weeds/node => 0ms (2) (avg:0) +/turf/closed/mineral/bscrystal => 0ms (2) (avg:0) +/obj/machinery/computer/camera_advanced/shuttle_docker/whiteship => 0ms (2) (avg:0) +/obj/item/pda/heads/cmo => 0ms (2) (avg:0) +/obj/item/storage/box/stockparts/deluxe => 0ms (2) (avg:0) +/mob/dead/observer => 0ms (2) (avg:0) +/obj/structure/closet/crate/secure/gear => 0ms (1) (avg:0) +/obj/machinery/portable_atmospherics/canister/water_vapor => 0ms (1) (avg:0) +/obj/machinery/portable_atmospherics/canister/bz => 0ms (1) (avg:0) +/obj/structure/transit_tube/station/reverse/flipped => 0ms (1) (avg:0) +/obj/structure/transit_tube/curved/flipped => 0ms (1) (avg:0) +/obj/structure/transit_tube/curved => 0ms (1) (avg:0) +/obj/structure/transit_tube/station/reverse => 0ms (1) (avg:0) +/obj/structure/door_assembly/door_assembly_hatch => 0ms (1) (avg:0) +/obj/structure/door_assembly/door_assembly_mhatch => 0ms (1) (avg:0) +/obj/structure/closet/crate/critter => 0ms (1) (avg:0) +/mob/living/carbon/monkey/punpun => 0ms (1) (avg:0) +/obj/item/gps/internal/legion => 0ms (1) (avg:0) +/obj/item/gps/internal/hierophant => 0ms (1) (avg:0) +/obj/item/gps/internal/miner => 0ms (1) (avg:0) +/obj/item/gps/internal/swarmer_beacon => 0ms (1) (avg:0) +/obj/structure/closet/chefcloset => 0ms (1) (avg:0) +/obj/item/dice => 0ms (1) (avg:0) +/obj/structure/closet/cardboard/metal => 0ms (1) (avg:0) +/obj/machinery/computer/telecrystals/boss => 0ms (1) (avg:0) +/obj/machinery/shuttle_manipulator => 0ms (1) (avg:0) +/obj/structure/closet/secure_closet/ertCom => 0ms (1) (avg:0) +/obj/machinery/computer/shuttle/syndicate/recall => 0ms (1) (avg:0) +/obj/item/dice/d6/space => 0ms (1) (avg:0) +/obj/item/stock_parts/cell/pulse/carbine => 0ms (1) (avg:0) +/obj/item/gun/energy/pulse/carbine/loyalpin => 0ms (1) (avg:0) +/obj/item/gun/ballistic/automatic/ar => 0ms (1) (avg:0) +/obj/structure/closet/secure_closet/contraband/heads => 0ms (1) (avg:0) +/obj/structure/closet/lawcloset => 0ms (1) (avg:0) +/obj/item/gun/energy/e_gun/mini/practice_phaser => 0ms (1) (avg:0) +/obj/item/storage/box/seccarts => 0ms (1) (avg:0) +/obj/item/storage/box/deputy => 0ms (1) (avg:0) +/obj/structure/closet/bombcloset/security => 0ms (1) (avg:0) +/obj/item/storage/box/trackimp => 0ms (1) (avg:0) +/obj/item/gun/energy/temperature/security => 0ms (1) (avg:0) +/obj/structure/closet/secure_closet/lethalshots => 0ms (1) (avg:0) +/obj/structure/closet/l3closet/security => 0ms (1) (avg:0) +/obj/structure/closet/secure_closet/hos => 0ms (1) (avg:0) +/obj/item/gun/energy/e_gun/hos => 0ms (1) (avg:0) +/obj/structure/closet/secure_closet/contraband/armory => 0ms (1) (avg:0) +/obj/item/storage/toolbox/drone => 0ms (1) (avg:0) +/obj/item/storage/box/hug => 0ms (1) (avg:0) +/obj/structure/closet/secure_closet/injection => 0ms (1) (avg:0) +/obj/structure/closet/secure_closet/warden => 0ms (1) (avg:0) +/obj/item/storage/box/prisoner => 0ms (1) (avg:0) +/obj/item/storage/box/hug/medical => 0ms (1) (avg:0) +/obj/item/construction/rcd/internal => 0ms (1) (avg:0) +/obj/item/stock_parts/cell/potato => 0ms (1) (avg:0) +/obj/item/storage/box/cups => 0ms (1) (avg:0) +/obj/structure/closet/athletic_mixed => 0ms (1) (avg:0) +/obj/structure/closet/boxinggloves => 0ms (1) (avg:0) +/obj/structure/closet/masks => 0ms (1) (avg:0) +/obj/structure/closet/lasertag/blue => 0ms (1) (avg:0) +/obj/structure/closet/lasertag/red => 0ms (1) (avg:0) +/obj/item/dice/d1 => 0ms (1) (avg:0) +/obj/item/construction/rcd => 0ms (1) (avg:0) +/obj/item/folder/documents => 0ms (1) (avg:0) +/obj/structure/closet/secure_closet/bar => 0ms (1) (avg:0) +/obj/item/reagent_containers/glass/bottle/nutrient/ez => 0ms (1) (avg:0) +/obj/item/reagent_containers/glass/bottle/nutrient/rh => 0ms (1) (avg:0) +/obj/structure/closet/secure_closet/exile => 0ms (1) (avg:0) +/obj/item/lighter/greyscale => 0ms (1) (avg:0) +/obj/item/storage/box/PDAs => 0ms (1) (avg:0) +/obj/structure/closet/secure_closet/detective => 0ms (1) (avg:0) +/obj/item/gun/energy/laser/captain => 0ms (1) (avg:0) +/obj/machinery/gravity_generator/part => 0ms (1) (avg:0) +/obj/structure/closet/secure_closet/security/med => 0ms (1) (avg:0) +/obj/item/reagent_containers/glass/beaker/sulphuric => 0ms (1) (avg:0) +/obj/structure/closet/secure_closet/captains => 0ms (1) (avg:0) +/obj/item/storage/belt/sabre => 0ms (1) (avg:0) +/obj/structure/closet/wardrobe/chemistry_white => 0ms (1) (avg:0) +/obj/item/storage/box/disks => 0ms (1) (avg:0) +/obj/structure/closet/secure_closet/hop => 0ms (1) (avg:0) +/obj/structure/closet/secure_closet/security/science => 0ms (1) (avg:0) +/obj/structure/closet/secure_closet/security/cargo => 0ms (1) (avg:0) +/obj/structure/closet/secure_closet/RD => 0ms (1) (avg:0) +/obj/structure/closet/l3closet/janitor => 0ms (1) (avg:0) +/obj/structure/closet/wardrobe/miner => 0ms (1) (avg:0) +/obj/item/reagent_containers/blood/APlus => 0ms (1) (avg:0) +/obj/structure/closet/secure_closet/CMO => 0ms (1) (avg:0) +/obj/item/defibrillator/compact/loaded => 0ms (1) (avg:0) +/obj/item/organ/cyberimp/eyes/hud/medical => 0ms (1) (avg:0) +/obj/item/reagent_containers/glass/bottle/vial/large/preloaded/CMO => 0ms (1) (avg:0) +/obj/item/reagent_containers/glass/bottle/vial/large/preloaded/tricord => 0ms (1) (avg:0) +/obj/item/reagent_containers/glass/bottle/vial/large/preloaded/charcoal => 0ms (1) (avg:0) +/obj/item/reagent_containers/glass/bottle/vial/large/preloaded/salglu => 0ms (1) (avg:0) +/obj/item/reagent_containers/glass/bottle/vial/large/preloaded/dexalin => 0ms (1) (avg:0) +/obj/item/reagent_containers/glass/bottle/vial/large/preloaded/synthflesh => 0ms (1) (avg:0) +/obj/item/stack/ore/silver => 0ms (1) (avg:0) +/obj/item/reagent_containers/glass/bottle/cold => 0ms (1) (avg:0) +/obj/item/reagent_containers/glass/bottle/flu_virion => 0ms (1) (avg:0) +/obj/item/reagent_containers/glass/bottle/plasma => 0ms (1) (avg:0) +/obj/item/reagent_containers/glass/bottle/synaptizine => 0ms (1) (avg:0) +/obj/item/reagent_containers/glass/bottle/formaldehyde => 0ms (1) (avg:0) +/obj/structure/closet/secure_closet/security/engine => 0ms (1) (avg:0) +/obj/structure/closet/l3closet/virology => 0ms (1) (avg:0) +/turf/open/floor/plasteel/dark/telecomms => 0ms (1) (avg:0) +/obj/structure/closet/secure_closet/freezer/kitchen/maintenance => 0ms (1) (avg:0) +/obj/item/storage/toolbox/artistic => 0ms (1) (avg:0) +/obj/item/clothing/under/maid => 0ms (1) (avg:0) +/obj/structure/closet/secure_closet/engineering_chief => 0ms (1) (avg:0) +/obj/structure/closet/secure_closet/engineering_electrical => 0ms (1) (avg:0) +/obj/structure/closet/secure_closet/engineering_welding => 0ms (1) (avg:0) +/obj/machinery/airalarm/engine => 0ms (1) (avg:0) +/obj/structure/closet/wardrobe/engineering_yellow => 0ms (1) (avg:0) +/obj/structure/reflector/double/anchored => 0ms (1) (avg:0) +/obj/structure/necropolis_gate/locked => 0ms (1) (avg:0) +/obj/structure/necropolis_gate/legion_gate => 0ms (1) (avg:0) +/obj/structure/necropolis_arch => 0ms (1) (avg:0) +/obj/item/construction/rcd/loaded => 0ms (1) (avg:0) +/obj/structure/necropolis_gate => 0ms (1) (avg:0) +/obj/machinery/door/airlock/diamond => 0ms (1) (avg:0) +/obj/item/folder/syndicate/mining => 0ms (1) (avg:0) +/obj/item/pda/clown => 0ms (1) (avg:0) +/obj/item/storage/box/hug/survival => 0ms (1) (avg:0) +/obj/item/storage/box/lights => 0ms (1) (avg:0) +/obj/item/storage/belt/utility/full => 0ms (1) (avg:0) +/obj/item/reagent_containers/syringe/lethal/choral => 0ms (1) (avg:0) +/obj/item/gun/energy/floragun => 0ms (1) (avg:0) +/obj/structure/closet/wardrobe/science_white => 0ms (1) (avg:0) +/obj/item/reagent_containers/glass/bottle/random_virus => 0ms (1) (avg:0) +/obj/item/gun/energy/temperature => 0ms (1) (avg:0) +/obj/machinery/computer/rdconsole => 0ms (1) (avg:0) +/obj/item/pda/clear => 0ms (1) (avg:0) +/obj/machinery/computer => 0ms (1) (avg:0) +/area/space => 0ms (1) (avg:0) +/area/awaymission/errorroom => 0ms (1) (avg:0) +/area/abductor_ship => 0ms (1) (avg:0) +/area/fabric_of_reality => 0ms (1) (avg:0) +/area/ai_multicam_room => 0ms (1) (avg:0) +/area/tdome/arena => 0ms (1) (avg:0) +/area/centcom/supplypod => 0ms (1) (avg:0) +/area/centcom/supplypod/podStorage => 0ms (1) (avg:0) +/area/centcom/supplypod/loading/three => 0ms (1) (avg:0) +/area/centcom/supplypod/loading/four => 0ms (1) (avg:0) +/area/centcom/supplypod/loading/one => 0ms (1) (avg:0) +/area/centcom/supplypod/loading/two => 0ms (1) (avg:0) +/area/syndicate_mothership => 0ms (1) (avg:0) +/area/ctf => 0ms (1) (avg:0) +/area/start => 0ms (1) (avg:0) +/area/tdome/arena_source => 0ms (1) (avg:0) +/area/holodeck/rec_center/refuel => 0ms (1) (avg:0) +/area/holodeck/rec_center/spacechess => 0ms (1) (avg:0) +/area/holodeck/rec_center/thunderdome1218 => 0ms (1) (avg:0) +/area/holodeck/rec_center/kobayashi => 0ms (1) (avg:0) +/area/holodeck/rec_center/chapelcourt => 0ms (1) (avg:0) +/area/holodeck/rec_center/school => 0ms (1) (avg:0) +/area/holodeck/rec_center/firingrange => 0ms (1) (avg:0) +/area/holodeck/rec_center/anthophila => 0ms (1) (avg:0) +/area/holodeck/rec_center/pet_lounge => 0ms (1) (avg:0) +/area/holodeck/rec_center/medical => 0ms (1) (avg:0) +/area/holodeck/rec_center/basketball => 0ms (1) (avg:0) +/area/holodeck/rec_center/beach => 0ms (1) (avg:0) +/area/holodeck/rec_center/thunderdome => 0ms (1) (avg:0) +/area/holodeck/rec_center/dodgeball => 0ms (1) (avg:0) +/area/holodeck/rec_center/winterwonderland => 0ms (1) (avg:0) +/area/holodeck/rec_center/bunker => 0ms (1) (avg:0) +/area/holodeck/rec_center/lounge => 0ms (1) (avg:0) +/area/holodeck/rec_center/wildlife => 0ms (1) (avg:0) +/area/holodeck/rec_center/offline => 0ms (1) (avg:0) +/area/holodeck/rec_center/burn => 0ms (1) (avg:0) +/area/holodeck/rec_center/court => 0ms (1) (avg:0) +/area/space/nearstation => 0ms (1) (avg:0) +/area/solar/port/fore => 0ms (1) (avg:0) +/area/solar/starboard/fore => 0ms (1) (avg:0) +/area/holodeck/rec_center => 0ms (1) (avg:0) +/area/solar/port/aft => 0ms (1) (avg:0) +/area/solar/starboard/aft => 0ms (1) (avg:0) +/obj/item/gps/internal/bubblegum => 0ms (1) (avg:0) +/obj/item/paper/monitorkey => 0ms (1) (avg:0) +/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden => 0ms (1) (avg:0) +/obj/machinery/atmospherics/components/trinary/mixer => 0ms (1) (avg:0) +/obj/machinery/atmospherics/components/trinary/mixer/flipped => 0ms (1) (avg:0) +/obj/machinery/atmospherics/components/trinary/filter/atmos/n2o => 0ms (1) (avg:0) +/obj/machinery/atmospherics/components/trinary/filter/atmos/plasma => 0ms (1) (avg:0) +/obj/machinery/atmospherics/components/trinary/mixer/airmix => 0ms (1) (avg:0) +/obj/machinery/atmospherics/components/trinary/filter/atmos/co2 => 0ms (1) (avg:0) +/obj/machinery/atmospherics/pipe/manifold/cyan/hidden => 0ms (1) (avg:0) +/obj/machinery/atmospherics/components/trinary/filter/atmos/n2 => 0ms (1) (avg:0) +/obj/machinery/atmospherics/components/trinary/filter/atmos/o2 => 0ms (1) (avg:0) +/obj/machinery/atmospherics/pipe/manifold/general/hidden => 0ms (1) (avg:0) +/obj/machinery/atmospherics/pipe/manifold/orange/visible => 0ms (1) (avg:0) +/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/engine_waste => 0ms (1) (avg:0) +/obj/machinery/computer/shuttle/syndicate/drop_pod => 0ms (1) (avg:0) +/obj/structure/closet/syndicate/nuclear => 0ms (1) (avg:0) +/obj/item/pda/syndicate => 0ms (1) (avg:0) +/obj/machinery/computer/med_data/syndie => 0ms (1) (avg:0) +/obj/machinery/computer/crew/syndie => 0ms (1) (avg:0) +/obj/machinery/computer/camera_advanced/shuttle_docker/syndicate => 0ms (1) (avg:0) +/obj/machinery/computer/shuttle/syndicate => 0ms (1) (avg:0) +/obj/machinery/computer/camera_advanced/syndie => 0ms (1) (avg:0) +/obj/machinery/computer/secure_data/syndie => 0ms (1) (avg:0) +/obj/machinery/computer/shuttle/ferry/request => 0ms (1) (avg:0) +/obj/structure/closet/secure_closet/miner/unlocked => 0ms (1) (avg:0) +/obj/item/storage/box/lights/bulbs => 0ms (1) (avg:0) +/obj/item/pda/medical => 0ms (1) (avg:0) +/obj/structure/closet/wardrobe/white/medical => 0ms (1) (avg:0) +/obj/machinery/atmospherics/pipe/manifold4w/general/visible => 0ms (1) (avg:0) +/turf/open/floor/plasteel/white/side => 0ms (1) (avg:0) +/obj/item/storage/box/survival => 0ms (1) (avg:0) +/obj/screen/inventory/hand => 0ms (1) (avg:0) +/obj/screen/zone_sel => 0ms (1) (avg:0) +/area/shuttle/transit => 0ms (1) (avg:0) diff --git a/data/logs/2019/12/03/round-23.40.49/singulo.html b/data/logs/2019/12/03/round-23.40.49/singulo.html new file mode 100644 index 00000000..82e81cde --- /dev/null +++ b/data/logs/2019/12/03/round-23.40.49/singulo.html @@ -0,0 +1,9 @@ +23:41:53 [0x200b8e6] (114,52,3) || the power storage unit lost power and turned off
+23:41:53 [0x200b8cb] (112,52,3) || the power storage unit lost power and turned off
+23:41:53 [0x20093fd] (196,79,2) || the power storage unit lost power and turned off
+23:41:53 [0x20090a2] (77,82,2) || the power storage unit lost power and turned off
+23:41:53 [0x2005b2b] (186,151,2) || the power storage unit lost power and turned off
+23:41:53 [0x2005b21] (180,151,2) || the power storage unit lost power and turned off
+23:41:53 [0x200545f] (162,161,2) || the power storage unit lost power and turned off
+23:41:53 [0x20052ec] (65,164,2) || the power storage unit lost power and turned off
+23:42:01 [0x2009056] (151,83,2) || the power storage unit lost power and turned off
diff --git a/data/logs/2019/12/03/round-23.56.34/attack.log b/data/logs/2019/12/03/round-23.56.34/attack.log new file mode 100644 index 00000000..72f6a12e --- /dev/null +++ b/data/logs/2019/12/03/round-23.56.34/attack.log @@ -0,0 +1,15 @@ +[2019-12-04 04:56:34.962] Starting up round ID . + - ------------------------- +[2019-12-04 04:57:51.004] ATTACK: BigFatAnimeTiddies/(Alessandra Joghs) has thrown the first-aid kit (Chief Medical Officer's Office (159, 110, 2)) +[2019-12-04 04:58:06.492] ATTACK: BigFatAnimeTiddies/(Alessandra Joghs) has thrown the bluespace rapid part exchange device (Genetics Lab (153, 115, 2)) +[2019-12-04 04:59:37.805] ATTACK: BigFatAnimeTiddies/(Alessandra Joghs) has grabbed *no key*/(Alessandra Joghs) passive grab (NEWHP: 100) (Genetics Lab (155, 114, 2)) +[2019-12-04 05:00:42.882] ATTACK: BigFatAnimeTiddies/(Alessandra Joghs) has fired at BigFatAnimeTiddies/(Alessandra Joghs) with [particle beam] from Genetics Lab (NEWHP: 100) (Genetics Lab (153, 115, 2)) +[2019-12-04 05:00:42.889] ATTACK: BigFatAnimeTiddies/(Alessandra Joghs) has shot *no key*/(Alessandra Joghs) with [particle beam] (NEWHP: 45) (Genetics Lab (153, 115, 2)) +[2019-12-04 05:00:51.246] ATTACK: BigFatAnimeTiddies/(Alessandra Joghs) has fired at BigFatAnimeTiddies/(Alessandra Joghs) with [particle beam] from Medbay Central (NEWHP: 100) (Medbay Central (153, 118, 2)) +[2019-12-04 05:00:55.406] ATTACK: BigFatAnimeTiddies/(Alessandra Joghs) has fired at [floor] with [particle beam] from Medbay Central (Medbay Central (153, 118, 2)) +[2019-12-04 05:01:01.193] ATTACK: BigFatAnimeTiddies/(Alessandra Joghs) has fired at [crafting menu] with [particle beam] from Medbay Central (Medbay Central (152, 120, 2)) +[2019-12-04 05:01:02.520] ATTACK: BigFatAnimeTiddies/(Alessandra Joghs) has fired at [*invalid*] with [particle beam] from Medbay Central (Medbay Central (152, 120, 2)) +[2019-12-04 05:01:08.326] ATTACK: BigFatAnimeTiddies/(Alessandra Joghs) has fired at [*invalid*] with [particle beam] from Medbay Central (Medbay Central (152, 120, 2)) +[2019-12-04 05:01:12.479] ATTACK: BigFatAnimeTiddies/(Alessandra Joghs) has fired at [*invalid*] with [particle beam] from Medbay Central (Medbay Central (152, 120, 2)) +[2019-12-04 05:01:13.538] ATTACK: BigFatAnimeTiddies/(Alessandra Joghs) has fired at [*invalid*] with [particle beam] from Medbay Central (Medbay Central (152, 120, 2)) +[2019-12-04 05:01:13.700] ATTACK: BigFatAnimeTiddies/(Alessandra Joghs) has fired at [*invalid*] with [particle beam] from Medbay Central (Medbay Central (152, 120, 2)) diff --git a/data/logs/2019/12/03/round-23.56.34/cargo.html b/data/logs/2019/12/03/round-23.56.34/cargo.html new file mode 100644 index 00000000..a126e661 --- /dev/null +++ b/data/logs/2019/12/03/round-23.56.34/cargo.html @@ -0,0 +1 @@ +23:57:23 [0x2027cdd] (152,108,1) || the supply shuttle Shuttle contents sold for 0 credits. Contents: /list Message: none.
diff --git a/data/logs/2019/12/03/round-23.56.34/cloning.log b/data/logs/2019/12/03/round-23.56.34/cloning.log new file mode 100644 index 00000000..f78e8e21 --- /dev/null +++ b/data/logs/2019/12/03/round-23.56.34/cloning.log @@ -0,0 +1,6 @@ +[2019-12-04 04:58:12.328] CLONING: Autoprocess added the record of BigFatAnimeTiddies/(Alessandra Joghs) to the cloning console at Genetics Lab (154, 113, 2). +[2019-12-04 04:58:16.692] CLONING: BigFatAnimeTiddies/(Alessandra Joghs) initiated EMPTY cloning of [0x210012b0][DC] via the cloning console at Genetics Lab (154, 113, 2). Pod: the cloning pod at Genetics Lab (155, 113, 2). +[2019-12-04 04:59:34.342] CLONING: *no key*/(Alessandra Joghs) completed cloning cycle in the cloning pod at Genetics Lab (155, 113, 2). +[2019-12-04 04:59:46.326] CLONING: Autoprocess added the record of BigFatAnimeTiddies/(Alessandra Joghs) to the cloning console at Genetics Lab (154, 113, 2). +[2019-12-04 05:00:02.463] CLONING: BigFatAnimeTiddies/(Alessandra Joghs) deleted [0x210012b0][DC]'s cloning records from the cloning console at Genetics Lab (154, 113, 2). +[2019-12-04 05:00:08.326] CLONING: Autoprocess added the record of BigFatAnimeTiddies/(Alessandra Joghs) to the cloning console at Genetics Lab (154, 113, 2). diff --git a/data/logs/2019/12/03/round-23.56.34/config_error.log b/data/logs/2019/12/03/round-23.56.34/config_error.log new file mode 100644 index 00000000..8424e97c --- /dev/null +++ b/data/logs/2019/12/03/round-23.56.34/config_error.log @@ -0,0 +1,12 @@ +[2019-12-04 04:56:34.924] Running /tg/ revision: 2019-12-04 + - origin/master: 95e35dc714ec059af1ba4f6355f717d810b87fa6 + - HEAD: 2cbcd7d49519db45ac762495b8c325f79919db0e +[2019-12-04 04:56:34.932] Loading config file config.txt... +[2019-12-04 04:56:34.935] Loading config file game_options.txt... +[2019-12-04 04:56:34.939] Failed to validate setting "WEREWOLF 1" for probability +[2019-12-04 04:56:34.943] Loading config file dbconfig.txt... +[2019-12-04 04:56:34.945] Loading config file comms.txt... +[2019-12-04 04:56:34.947] Loading config file antag_rep.txt... +[2019-12-04 04:56:34.950] Loading config file donator_groupings.txt... +[2019-12-04 04:56:34.954] Loading config file maps.txt... +[2019-12-04 04:56:34.961] SQL: Database is not enabled in configuration. diff --git a/data/logs/2019/12/03/round-23.56.34/game.log b/data/logs/2019/12/03/round-23.56.34/game.log new file mode 100644 index 00000000..53c6629f --- /dev/null +++ b/data/logs/2019/12/03/round-23.56.34/game.log @@ -0,0 +1,333 @@ +[2019-12-04 04:56:34.962] Starting up round ID . + - ------------------------- +[2019-12-04 04:56:35.001] ADMIN: Loading Banlist +[2019-12-04 04:56:35.257] ACCESS: Login: BigFatAnimeTiddies from 127.0.0.1-3498261404 || BYOND v512.1463 +[2019-12-04 04:56:35.258] ACCESS: Mob Login: BigFatAnimeTiddies/(BigFatAnimeTiddies) was assigned to a /mob/dead/new_player +[2019-12-04 04:56:35.966] GAME: BigFatAnimeTiddies/(BigFatAnimeTiddies) Client BigFatAnimeTiddies/(BigFatAnimeTiddies) has taken ownership of mob BigFatAnimeTiddies(/mob/dead/new_player) (start area (11, 174, 1)) +[2019-12-04 04:56:36.145] GAME: Saved mode is 'extended' +[2019-12-04 04:56:43.246] GAME: Hierophant's Arena loaded at at 148,196,4 +[2019-12-04 04:56:43.263] GAME: Makeshift Shelter loaded at at 57,180,4 +[2019-12-04 04:56:43.291] GAME: Free Golem Ship loaded at at 118,94,4 +[2019-12-04 04:56:43.324] GAME: Ruin of Sloth loaded at at 158,38,4 +[2019-12-04 04:56:43.334] GAME: Fountain Hall loaded at at 199,177,4 +[2019-12-04 04:56:43.385] GAME: Ash Walker Nest loaded at at 170,91,4 +[2019-12-04 04:56:43.438] GAME: Animal Hospital loaded at at 212,81,4 +[2019-12-04 04:56:43.867] GAME: Ancient Space Station loaded at at 76,109,3 +[2019-12-04 04:56:43.909] GAME: Derelict 4 loaded at at 121,27,3 +[2019-12-04 04:56:44.232] GAME: The Twin-Nexus Hotel loaded at at 167,110,3 +[2019-12-04 04:56:44.274] GAME: Disposal Facility 17 loaded at at 31,137,3 +[2019-12-04 04:56:44.492] GAME: Survivalist Bunker loaded at at 104,164,3 +[2019-12-04 04:56:44.524] GAME: Strange Ship loaded at at 75,204,3 +[2019-12-04 04:56:44.583] GAME: DK Excavator 453 loaded at at 41,54,3 +[2019-12-04 04:56:44.622] GAME: Derelict 6 loaded at at 43,159,3 +[2019-12-04 04:56:44.647] GAME: Empty Shell loaded at at 207,41,3 +[2019-12-04 04:56:44.682] GAME: DJ Station loaded at at 215,194,3 +[2019-12-04 04:56:48.570] GAME: Ancient Cloning Lab loaded at at 176,31,3 +[2019-12-04 04:56:48.607] GAME: Aesthetic Outpost loaded at at 185,45,3 +[2019-12-04 04:56:48.633] GAME: Abandoned Teleporter loaded at at 184,205,3 +[2019-12-04 04:56:48.658] GAME: Asteroid 2 loaded at at 82,23,3 +[2019-12-04 04:56:48.683] GAME: Salvation loaded at at 35,111,3 +[2019-12-04 04:56:48.720] GAME: Space Arcade loaded at at 74,63,3 +[2019-12-04 04:56:57.312] ADMIN: BigFatAnimeTiddies has started the game. +[2019-12-04 04:57:22.579] GAME: Backup Shuttle loaded at at 84,206,1 +[2019-12-04 04:57:22.652] GAME: assault pod (Default) loaded at at 85,207,1 +[2019-12-04 04:57:22.919] GAME: basic syndicate infiltrator loaded at at 80,199,1 +[2019-12-04 04:57:23.200] GAME: fancy transport ferry loaded at at 82,208,1 +[2019-12-04 04:57:23.362] GAME: Box Station Emergency Shuttle loaded at at 83,199,1 +[2019-12-04 04:57:23.532] GAME: cargo ferry (Box) loaded at at 85,204,1 +[2019-12-04 04:57:23.729] GAME: escape pod (Default) loaded at at 87,208,1 +[2019-12-04 04:57:23.767] GAME: labour shuttle (Box) loaded at at 86,206,1 +[2019-12-04 04:57:23.838] GAME: auxilliary base (Default) loaded at at 84,206,1 +[2019-12-04 04:57:23.887] GAME: escape pod (Default) loaded at at 87,208,1 +[2019-12-04 04:57:23.977] GAME: arrival shuttle (Box) loaded at at 81,207,1 +[2019-12-04 04:57:24.060] GAME: escape pod (Default) loaded at at 87,208,1 +[2019-12-04 04:57:24.093] GAME: mining shuttle (Box) loaded at at 86,207,1 +[2019-12-04 04:57:24.135] GAME: escape pod (Default) loaded at at 87,208,1 +[2019-12-04 04:57:24.343] VOTE: Roundtype vote started by server. +[2019-12-04 04:57:26.622] GAME: *no key*/(BigFatAnimeTiddies) *no key*/(BigFatAnimeTiddies) is no longer owning mob BigFatAnimeTiddies(/mob/dead/new_player) (start area (11, 174, 1)) +[2019-12-04 04:57:26.622] ACCESS: Mob Login: BigFatAnimeTiddies/(Alessandra Joghs) was assigned to a /mob/living/carbon/human +[2019-12-04 04:57:26.747] GAME: BigFatAnimeTiddies/(Alessandra Joghs) Client BigFatAnimeTiddies/(Alessandra Joghs) has taken ownership of mob (/mob/living/carbon/human) (Chief Medical Officer's Office (158, 110, 2)) +[2019-12-04 04:57:32.507] SAY: *no key*/(Prison Ofitser) "Engaging patrol mode." (Labor Camp Security (23, 36, 4)) +[2019-12-04 04:57:32.508] SAY: *no key*/(Prison Ofitser) "Disengaging patrol mode." (Labor Camp Security (23, 36, 4)) +[2019-12-04 04:57:32.513] SAY: *no key*/(Officer Beepsky) "Engaging patrol mode." (Labor Shuttle Dock (94, 159, 2)) +[2019-12-04 04:57:34.447] EMOTE: *no key*/(Runtime) looks alert. (Chief Medical Officer's Office (159, 109, 2)) +[2019-12-04 04:57:34.642] EMOTE: *no key*/(mouse) runs in a circle. (Port Maintenance (61, 127, 2)) +[2019-12-04 04:57:34.647] SAY: *no key*/(Poly) "I have lived many lives!" FORCED by poly (Chief Engineer's Office (118, 83, 2)) +[2019-12-04 04:57:38.492] EMOTE: *no key*/(Runtime) sits down. (Chief Medical Officer's Office (159, 109, 2)) +[2019-12-04 04:57:44.833] SAY: *no key*/(Poly) "Poly wanna cracker!" FORCED by poly (Chief Engineer's Office (116, 83, 2)) +[2019-12-04 04:57:45.364] ADMIN: BigFatAnimeTiddies/(Alessandra Joghs) created a /obj/item/storage/box/stockparts/deluxe +[2019-12-04 04:57:47.029] ADMIN: BigFatAnimeTiddies/(Alessandra Joghs) created a /obj/item/storage/part_replacer/bluespace +[2019-12-04 04:57:48.928] SAY: *no key*/(�Medibot) "There's always a catch, and I'm the best there is." (CentCom Transport Shuttle Dock (154, 73, 1)) +[2019-12-04 04:57:54.927] SAY: *no key*/(Poly) "Check the crystal, you chucklefucks!" FORCED by poly (Chief Engineer's Office (117, 82, 2)) +[2019-12-04 04:57:56.925] SAY: *no key*/(�Medibot) "I knew it, I should've been a plastic surgeon." (CentCom Transport Shuttle Dock (154, 73, 1)) +[2019-12-04 04:57:56.929] EMOTE: *no key*/(Poly) turns and flies towards the high-capacity power cell+. (Chief Engineer's Office (117, 82, 2)) +[2019-12-04 04:57:58.725] EMOTE: *no key*/(grey baby slime (193)) lights up for a bit, then stops. (Xenobiology Lab (167, 93, 2)) +[2019-12-04 04:58:00.748] EMOTE: *no key*/(monkey (686)) rolls. (Genetics Lab (161, 117, 2)) +[2019-12-04 04:58:02.958] SAY: *no key*/(Poly) "Wire the solars, you lazy bums!" FORCED by poly (Chief Engineer's Office (118, 82, 2)) +[2019-12-04 04:58:08.935] EMOTE: *no key*/(cow) brays. (Holding Facility (103, 71, 1)) +[2019-12-04 04:58:12.930] SAY: *no key*/(Poly) "WHO TOOK THE DAMN HARDSUITS?" FORCED by poly (Chief Engineer's Office (118, 80, 2)) +[2019-12-04 04:58:14.726] EMOTE: *no key*/(Runtime) stretches out for a belly rub. (Chief Medical Officer's Office (159, 109, 2)) +[2019-12-04 04:58:18.932] EMOTE: *no key*/(Poly) bawks! (Chief Engineer's Office (117, 80, 2)) +[2019-12-04 04:58:20.933] SAY: *no key*/(Poly) "WHO TOOK THE DAMN HARDSUITS?" FORCED by poly (Chief Engineer's Office (117, 80, 2)) +[2019-12-04 04:58:22.741] EMOTE: *no key*/(grey baby slime (768)) bounces in place. (Xenobiology Lab (176, 94, 2)) +[2019-12-04 04:58:22.932] SAY: *no key*/(Poly) "WHO TOOK THE DAMN HARDSUITS?" FORCED by poly (Chief Engineer's Office (117, 80, 2)) +[2019-12-04 04:58:24.932] SAY: *no key*/(Runtime) "Esp!" FORCED by poly (Chief Medical Officer's Office (159, 109, 2)) +[2019-12-04 04:58:26.125] VOTE: Vote Result: Inconclusive - No Votes! +[2019-12-04 04:58:28.728] EMOTE: *no key*/(Travis) scratches. (Bar (136, 143, 2)) +[2019-12-04 04:58:32.928] EMOTE: *no key*/(mouse) shakes. (Starboard Bow Maintenance (161, 159, 2)) +[2019-12-04 04:58:42.929] EMOTE: *no key*/(Runtime) shakes its head. (Chief Medical Officer's Office (159, 109, 2)) +[2019-12-04 04:58:48.931] SAY: *no key*/(cow) "moo" FORCED by poly (Holding Facility (103, 71, 1)) +[2019-12-04 04:58:50.730] EMOTE: *no key*/(Ian) chases its tail! (Head of Personnel's Office (105, 121, 2)) +[2019-12-04 04:58:50.924] SAY: *no key*/(mouse) "SQUEAK!" FORCED by poly (Aft Maintenance (155, 87, 2)) +[2019-12-04 04:58:52.928] SAY: *no key*/(Poly) "WHO TOOK THE DAMN HARDSUITS?" FORCED by poly (Chief Engineer's Office (115, 79, 2)) +[2019-12-04 04:58:56.930] EMOTE: *no key*/(Poly) squawks. (Chief Engineer's Office (115, 79, 2)) +[2019-12-04 04:58:58.928] EMOTE: *no key*/(Poly) bawks! (Chief Engineer's Office (115, 79, 2)) +[2019-12-04 04:59:04.925] SAY: *no key*/(mouse) "SQUEAK!" FORCED by poly (Starboard Bow Maintenance (163, 159, 2)) +[2019-12-04 04:59:06.772] EMOTE: *no key*/(monkey (18)) waves her tail. (Virology (160, 100, 2)) +[2019-12-04 04:59:06.931] EMOTE: *no key*/(Ian) shakes its head. (Head of Personnel's Office (105, 121, 2)) +[2019-12-04 04:59:10.931] EMOTE: *no key*/(Paperwork) dozes off. (Cargo Bay (80, 118, 2)) +[2019-12-04 04:59:18.929] SAY: *no key*/(Poly) "OH GOD ITS ABOUT TO DELAMINATE CALL THE SHUTTLE" FORCED by poly (Chief Engineer's Office (115, 79, 2)) +[2019-12-04 04:59:24.930] EMOTE: *no key*/(�chicken) clucks. (Holding Facility (104, 71, 1)) +[2019-12-04 04:59:26.937] SAY: *no key*/(Nobody's Perfect) "I knew it, I should've been a plastic surgeon." (Wizard's Den (24, 75, 1)) +[2019-12-04 04:59:28.927] SAY: *no key*/(mouse) "SQUEAK!" FORCED by poly (Aft Maintenance (155, 87, 2)) +[2019-12-04 04:59:30.730] EMOTE: *no key*/(monkey (470)) scratches. (Genetics Lab (160, 118, 2)) +[2019-12-04 04:59:30.933] SAY: *no key*/(Tom) "SQUEAK!" FORCED by poly (Prison Wing (101, 189, 2)) +[2019-12-04 04:59:32.933] EMOTE: *no key*/(Poly) looks in the �Power-ON cartridge's direction and takes flight. (Chief Engineer's Office (115, 79, 2)) +[2019-12-04 04:59:36.756] EMOTE: *no key*/(monkey (686)) jumps! (Genetics Lab (160, 116, 2)) +[2019-12-04 04:59:38.935] EMOTE: *no key*/(Runtime) meows. (Chief Medical Officer's Office (159, 109, 2)) +[2019-12-04 04:59:48.726] EMOTE: *no key*/(monkey (153)) waves her tail. (Genetics Lab (160, 120, 2)) +[2019-12-04 04:59:50.743] EMOTE: *no key*/(monkey (301)) scratches. (Genetics Lab (160, 119, 2)) +[2019-12-04 04:59:54.929] EMOTE: *no key*/(cow) shakes its head. (Holding Facility (102, 72, 1)) +[2019-12-04 05:00:00.922] SAY: *no key*/(�Medibot) "I knew it, I should've been a plastic surgeon." (CentCom Transport Shuttle Dock (154, 73, 1)) +[2019-12-04 05:00:02.924] SAY: *no key*/(mouse) "Squeak?" FORCED by poly (Starboard Quarter Maintenance (171, 81, 2)) +[2019-12-04 05:00:18.928] SAY: *no key*/(mouse) "SQUEAK!" FORCED by poly (Aft Maintenance (146, 100, 2)) +[2019-12-04 05:00:20.729] EMOTE: *no key*/(monkey (470)) scratches. (Genetics Lab (160, 120, 2)) +[2019-12-04 05:00:20.928] EMOTE: *no key*/(Poly) flutters its wings. (Chief Engineer's Office (115, 79, 2)) +[2019-12-04 05:00:20.931] EMOTE: *no key*/(�chicken) clucks. (Holding Facility (104, 71, 1)) +[2019-12-04 05:00:20.935] SAY: *no key*/(Hijikata) "What kind of medbay is this? Everyone's dropping like flies." (Holding Facility (104, 53, 1)) +[2019-12-04 05:00:28.730] EMOTE: *no key*/(monkey (301)) waves her tail. (Genetics Lab (161, 120, 2)) +[2019-12-04 05:00:28.929] EMOTE: *no key*/(Poly) squawks. (Chief Engineer's Office (115, 79, 2)) +[2019-12-04 05:00:32.930] EMOTE: *no key*/(Runtime) mews. (Chief Medical Officer's Office (159, 109, 2)) +[2019-12-04 05:00:34.931] EMOTE: *no key*/(Paperwork) yawns. (Cargo Bay (81, 119, 2)) +[2019-12-04 05:00:36.929] EMOTE: *no key*/(Poly) squawks. (Chief Engineer's Office (115, 79, 2)) +[2019-12-04 05:00:38.926] EMOTE: *no key*/(mouse) squeaks. (Starboard Quarter Maintenance (196, 83, 2)) +[2019-12-04 05:00:38.931] SAY: *no key*/(�Medibot) "Radar, put a mask on!" (CentCom Transport Shuttle Dock (155, 73, 1)) +[2019-12-04 05:00:40.160] ADMIN: BigFatAnimeTiddies/(Alessandra Joghs) created a /obj/item/gun/energy/beam_rifle/debug +[2019-12-04 05:00:40.930] EMOTE: *no key*/(Poly) looks in the �Power-ON cartridge's direction and takes flight. (Chief Engineer's Office (115, 79, 2)) +[2019-12-04 05:00:40.932] EMOTE: *no key*/(Ian) pants. (Head of Personnel's Office (106, 120, 2)) +[2019-12-04 05:00:42.748] EMOTE: *no key*/(Ian) dances around. (Head of Personnel's Office (106, 120, 2)) +[2019-12-04 05:00:42.888] EMOTE: *no key*/(Alessandra Joghs) screams! (Genetics Lab (155, 115, 2)) +[2019-12-04 05:00:44.729] EMOTE: *no key*/(monkey (470)) scratches. (Genetics Lab (160, 120, 2)) +[2019-12-04 05:00:44.934] SAY: *no key*/(Poly) "OH GOD ITS ABOUT TO DELAMINATE CALL THE SHUTTLE" FORCED by poly (Chief Engineer's Office (116, 79, 2)) +[2019-12-04 05:00:50.928] EMOTE: *no key*/(mouse) squeaks. (Aft Maintenance (130, 108, 2)) +[2019-12-04 05:00:56.729] EMOTE: *no key*/(Ian) dances around. (Head of Personnel's Office (106, 120, 2)) +[2019-12-04 05:01:00.927] EMOTE: *no key*/(mouse) squeaks. (Starboard Bow Maintenance (163, 159, 2)) +[2019-12-04 05:01:02.930] EMOTE: *no key*/(Paperwork) snores. (Cargo Bay (81, 120, 2)) +[2019-12-04 05:01:04.935] SAY: *no key*/(Tom) "Squeak?" FORCED by poly (Prison Wing (103, 191, 2)) +[2019-12-04 05:01:08.932] SAY: *no key*/(Accidents Happen) "Delicious!" (Hotel Staff Room (200, 141, 3)) +[2019-12-04 05:01:14.927] EMOTE: *no key*/(Poly) squawks. (Chief Engineer's Office (115, 79, 2)) +[2019-12-04 05:01:16.925] EMOTE: *no key*/(mouse) squeaks. (Starboard Quarter Maintenance (170, 81, 2)) +[2019-12-04 05:01:16.929] SAY: *no key*/(Poly) "Check the crystal, you chucklefucks!" FORCED by poly (Chief Engineer's Office (115, 79, 2)) +[2019-12-04 05:01:18.929] SAY: *no key*/(emergency Medibot) "I knew it, I should've been a plastic surgeon." (Unexplored Location (227, 90, 4)) +[2019-12-04 05:01:24.931] EMOTE: *no key*/(�chicken) pecks at the ground. (Holding Facility (103, 72, 1)) +[2019-12-04 05:01:28.731] EMOTE: *no key*/(Runtime) sits down. (Chief Medical Officer's Office (159, 109, 2)) +[2019-12-04 05:01:30.719] EMOTE: BigFatAnimeTiddies/(Alessandra Joghs) gasps! (Medbay Central (152, 120, 2)) +[2019-12-04 05:01:30.931] SAY: *no key*/(Hijikata) "What kind of medbay is this? Everyone's dropping like flies." (Holding Facility (104, 53, 1)) +[2019-12-04 05:01:32.927] SAY: *no key*/(Accidents Happen) "What kind of medbay is this? Everyone's dropping like flies." (Hotel Staff Room (200, 141, 3)) +[2019-12-04 05:01:34.736] EMOTE: BigFatAnimeTiddies/(Alessandra Joghs) seizes up and falls limp, her eyes dead and lifeless... (Medbay Central (152, 120, 2)) +[2019-12-04 05:01:36.935] SAY: *no key*/(Poly) "Check the crystal, you chucklefucks!" FORCED by poly (Chief Engineer's Office (115, 79, 2)) +[2019-12-04 05:01:37.829] GAME: *no key*/(Alessandra Joghs) *no key*/(Alessandra Joghs) is no longer owning mob Unknown(/mob/living/carbon/human) (Medbay Central (152, 120, 2)) +[2019-12-04 05:01:37.830] ACCESS: Mob Login: BigFatAnimeTiddies/(Alessandra Joghs) was assigned to a /mob/dead/observer +[2019-12-04 05:01:37.841] GAME: BigFatAnimeTiddies/(Alessandra Joghs) Client BigFatAnimeTiddies/(Alessandra Joghs) has taken ownership of mob Alessandra Joghs(/mob/dead/observer) (Medbay Central (152, 120, 2)) +[2019-12-04 05:01:44.933] EMOTE: *no key*/(Poly) looks in the �Power-ON cartridge's direction and takes flight. (Chief Engineer's Office (115, 79, 2)) +[2019-12-04 05:01:46.936] SAY: *no key*/(Poly) "Wire the solars, you lazy bums!" FORCED by poly (Chief Engineer's Office (115, 79, 2)) +[2019-12-04 05:01:50.929] EMOTE: *no key*/(mouse) shakes. (Starboard Quarter Maintenance (196, 84, 2)) +[2019-12-04 05:01:52.736] EMOTE: *no key*/(Alessandra Joghs) seizes up and falls limp, her eyes dead and lifeless... (Genetics Lab (155, 115, 2)) +[2019-12-04 05:02:00.939] SAY: *no key*/(Nobody's Perfect) "There's always a catch, and I'm the best there is." (Wizard's Den (24, 75, 1)) +[2019-12-04 05:02:04.933] SAY: *no key*/(Poly) "Check the crystal, you chucklefucks!" FORCED by poly (Chief Engineer's Office (117, 82, 2)) +[2019-12-04 05:02:08.925] SAY: *no key*/(mouse) "Squeak?" FORCED by poly (Starboard Quarter Maintenance (196, 82, 2)) +[2019-12-04 05:02:08.927] SAY: *no key*/(mouse) "SQUEAK!" FORCED by poly (Starboard Bow Maintenance (164, 157, 2)) +[2019-12-04 05:02:08.932] SAY: *no key*/(Runtime) "Esp!" FORCED by poly (Chief Medical Officer's Office (159, 109, 2)) +[2019-12-04 05:02:14.929] SAY: *no key*/(Poly) "OH GOD ITS ABOUT TO DELAMINATE CALL THE SHUTTLE" FORCED by poly (Chief Engineer's Office (117, 81, 2)) +[2019-12-04 05:02:16.726] EMOTE: *no key*/(monkey (686)) scratches. (Genetics Lab (160, 116, 2)) +[2019-12-04 05:02:16.927] SAY: *no key*/(Poly) "OH GOD ITS ABOUT TO DELAMINATE CALL THE SHUTTLE" FORCED by poly (Chief Engineer's Office (117, 81, 2)) +[2019-12-04 05:02:20.740] EMOTE: *no key*/(Runtime) wags its tail. (Chief Medical Officer's Office (159, 109, 2)) +[2019-12-04 05:02:22.930] SAY: *no key*/(Poly) "Wire the solars, you lazy bums!" FORCED by poly (Chief Engineer's Office (115, 79, 2)) +[2019-12-04 05:02:26.926] SAY: *no key*/(Poly) "I have lived many lives!" FORCED by poly (Chief Engineer's Office (115, 79, 2)) +[2019-12-04 05:02:28.928] SAY: *no key*/(Poly) "Wire the solars, you lazy bums!" FORCED by poly (Chief Engineer's Office (115, 79, 2)) +[2019-12-04 05:02:32.925] SAY: *no key*/(mouse) "SQUEAK!" FORCED by poly (Starboard Quarter Maintenance (196, 82, 2)) +[2019-12-04 05:02:32.926] SAY: *no key*/(Accidents Happen) "Delicious!" (Hotel Staff Room (200, 141, 3)) +[2019-12-04 05:02:32.929] EMOTE: *no key*/(Poly) bawks! (Chief Engineer's Office (115, 79, 2)) +[2019-12-04 05:02:44.744] EMOTE: *no key*/(monkey (686)) rolls. (Genetics Lab (160, 117, 2)) +[2019-12-04 05:02:44.927] SAY: *no key*/(Poly) "Wire the solars, you lazy bums!" FORCED by poly (Chief Engineer's Office (115, 79, 2)) +[2019-12-04 05:02:46.925] EMOTE: *no key*/(mouse) squeaks. (Starboard Quarter Maintenance (167, 81, 2)) +[2019-12-04 05:02:46.928] SAY: *no key*/(Poly) "OH GOD ITS ABOUT TO DELAMINATE CALL THE SHUTTLE" FORCED by poly (Chief Engineer's Office (115, 79, 2)) +[2019-12-04 05:02:48.933] EMOTE: *no key*/(Poly) squawks. (Chief Engineer's Office (115, 79, 2)) +[2019-12-04 05:02:52.729] EMOTE: *no key*/(monkey (300)) rolls. (Genetics Lab (160, 119, 2)) +[2019-12-04 05:02:54.928] SAY: *no key*/(Poly) "OH GOD ITS ABOUT TO DELAMINATE CALL THE SHUTTLE" FORCED by poly (Chief Engineer's Office (115, 79, 2)) +[2019-12-04 05:02:58.933] EMOTE: *no key*/(Poly) flutters its wings. (Chief Engineer's Office (115, 79, 2)) +[2019-12-04 05:03:00.727] EMOTE: *no key*/(monkey (316)) jumps! (Virology (160, 100, 2)) +[2019-12-04 05:03:00.926] SAY: *no key*/(�Medibot) "What kind of medbay is this? Everyone's dropping like flies." (CentCom Transport Shuttle Dock (154, 73, 1)) +[2019-12-04 05:03:00.933] SAY: *no key*/(Hijikata) "Delicious!" (Holding Facility (104, 53, 1)) +[2019-12-04 05:03:08.727] EMOTE: *no key*/(Runtime) stops resting. (Chief Medical Officer's Office (159, 109, 2)) +[2019-12-04 05:03:10.728] EMOTE: *no key*/(Travis) jumps! (Bar (133, 142, 2)) +[2019-12-04 05:03:10.929] EMOTE: *no key*/(Poly) looks in the �Power-ON cartridge's direction and takes flight. (Chief Engineer's Office (115, 79, 2)) +[2019-12-04 05:03:14.731] EMOTE: *no key*/(Ian) dances around. (Head of Personnel's Office (105, 120, 2)) +[2019-12-04 05:03:18.930] SAY: *no key*/(Poly) "Check the crystal, you chucklefucks!" FORCED by poly (Chief Engineer's Office (116, 80, 2)) +[2019-12-04 05:03:24.923] EMOTE: *no key*/(mouse) runs in a circle. (Starboard Bow Maintenance (162, 156, 2)) +[2019-12-04 05:03:24.925] SAY: *no key*/(emergency Medibot) "Radar, put a mask on!" (Unexplored Location (227, 90, 4)) +[2019-12-04 05:03:24.928] EMOTE: *no key*/(Poly) flutters its wings. (Chief Engineer's Office (117, 82, 2)) +[2019-12-04 05:03:36.929] SAY: *no key*/(Hijikata) "Radar, put a mask on!" (Holding Facility (104, 53, 1)) +[2019-12-04 05:03:40.745] EMOTE: *no key*/(Runtime) wags its tail. (Chief Medical Officer's Office (159, 108, 2)) +[2019-12-04 05:03:42.925] SAY: *no key*/(�Medibot) "Delicious!" (CentCom Transport Shuttle Dock (155, 73, 1)) +[2019-12-04 05:03:54.924] SAY: *no key*/(Accidents Happen) "There's always a catch, and I'm the best there is." (Hotel Staff Room (200, 141, 3)) +[2019-12-04 05:03:56.928] EMOTE: *no key*/(Poly) squawks. (Chief Engineer's Office (119, 80, 2)) +[2019-12-04 05:04:00.743] EMOTE: *no key*/(Runtime) crouches on its hind legs. (Chief Medical Officer's Office (159, 108, 2)) +[2019-12-04 05:04:16.741] EMOTE: *no key*/(monkey (300)) scratches. (Genetics Lab (160, 119, 2)) +[2019-12-04 05:04:16.930] SAY: *no key*/(Poly) "WHO TOOK THE DAMN HARDSUITS?" FORCED by poly (Chief Engineer's Office (118, 79, 2)) +[2019-12-04 05:04:20.934] SAY: *no key*/(�chicken) "Bwaak bwak." FORCED by poly (Holding Facility (104, 71, 1)) +[2019-12-04 05:04:26.923] EMOTE: *no key*/(mouse) shakes. (Aft Maintenance (125, 106, 2)) +[2019-12-04 05:04:28.741] EMOTE: *no key*/(monkey (470)) rolls. (Genetics Lab (161, 117, 2)) +[2019-12-04 05:04:30.927] EMOTE: *no key*/(Poly) bawks! (Chief Engineer's Office (119, 79, 2)) +[2019-12-04 05:04:32.741] EMOTE: *no key*/(grey baby slime (193)) vibrates! (Xenobiology Lab (167, 93, 2)) +[2019-12-04 05:04:34.925] SAY: *no key*/(mouse) "SQUEAK!" FORCED by poly (Aft Maintenance (127, 105, 2)) +[2019-12-04 05:04:34.928] SAY: *no key*/(Poly) "Poly wanna cracker!" FORCED by poly (Chief Engineer's Office (118, 80, 2)) +[2019-12-04 05:04:36.926] SAY: *no key*/(Poly) "Wire the solars, you lazy bums!" FORCED by poly (Chief Engineer's Office (118, 81, 2)) +[2019-12-04 05:04:36.929] EMOTE: *no key*/(�chicken) clucks. (Holding Facility (104, 72, 1)) +[2019-12-04 05:04:40.746] EMOTE: *no key*/(monkey (301)) scratches. (Genetics Lab (160, 117, 2)) +[2019-12-04 05:04:52.923] EMOTE: *no key*/(mouse) runs in a circle. (Port Maintenance (61, 134, 2)) +[2019-12-04 05:04:52.927] SAY: *no key*/(Poly) "I have lived many lives!" FORCED by poly (Chief Engineer's Office (118, 79, 2)) +[2019-12-04 05:04:56.923] SAY: *no key*/(�Medibot) "What kind of medbay is this? Everyone's dropping like flies." (CentCom Transport Shuttle Dock (155, 73, 1)) +[2019-12-04 05:04:58.748] EMOTE: *no key*/(monkey (301)) scratches. (Genetics Lab (160, 116, 2)) +[2019-12-04 05:04:58.924] EMOTE: *no key*/(mouse) shakes. (Port Quarter Maintenance (95, 86, 2)) +[2019-12-04 05:05:04.725] EMOTE: *no key*/(monkey (495)) waves her tail. (Virology (157, 100, 2)) +[2019-12-04 05:05:06.930] EMOTE: *no key*/(�chicken) flaps its wings viciously. (Holding Facility (104, 71, 1)) +[2019-12-04 05:05:08.929] SAY: *no key*/(Poly) "Poly wanna cracker!" FORCED by poly (Chief Engineer's Office (118, 79, 2)) +[2019-12-04 05:05:12.743] EMOTE: *no key*/(Runtime) wags its tail. (Chief Medical Officer's Office (159, 108, 2)) +[2019-12-04 05:05:14.931] SAY: *no key*/(�chicken) "Cluck!" FORCED by poly (Holding Facility (104, 72, 1)) +[2019-12-04 05:05:16.926] SAY: *no key*/(�Medibot) "Radar, put a mask on!" (CentCom Transport Shuttle Dock (154, 73, 1)) +[2019-12-04 05:05:18.926] SAY: *no key*/(mouse) "SQUEAK!" FORCED by poly (Aft Maintenance (156, 87, 2)) +[2019-12-04 05:05:24.926] SAY: *no key*/(mouse) "Squeak!" FORCED by poly (Starboard Bow Maintenance (162, 159, 2)) +[2019-12-04 05:05:24.930] EMOTE: *no key*/(Poly) bawks! (Chief Engineer's Office (118, 79, 2)) +[2019-12-04 05:05:32.929] SAY: *no key*/(Hijikata) "Radar, put a mask on!" (Holding Facility (104, 53, 1)) +[2019-12-04 05:05:42.927] SAY: *no key*/(Runtime) "Esp!" FORCED by poly (Chief Medical Officer's Office (159, 108, 2)) +[2019-12-04 05:05:46.744] EMOTE: *no key*/(grey baby slime (193)) jiggles! (Xenobiology Lab (165, 92, 2)) +[2019-12-04 05:05:48.934] EMOTE: *no key*/(Tom) squeaks. (Prison Wing (101, 191, 2)) +[2019-12-04 05:05:51.422] GAME: Random Event triggering: Minor Space Dust (/datum/round_event/space_dust) +[2019-12-04 05:05:52.928] SAY: *no key*/(Poly) "Wire the solars, you lazy bums!" FORCED by poly (Chief Engineer's Office (115, 79, 2)) +[2019-12-04 05:06:02.923] SAY: *no key*/(mouse) "Squeak?" FORCED by poly (Aft Maintenance (157, 86, 2)) +[2019-12-04 05:06:04.742] EMOTE: *no key*/(monkey (301)) scratches. (Genetics Lab (161, 117, 2)) +[2019-12-04 05:06:08.924] SAY: *no key*/(mouse) "SQUEAK!" FORCED by poly (Port Maintenance (61, 135, 2)) +[2019-12-04 05:06:10.930] SAY: *no key*/(Poly) "OH GOD ITS ABOUT TO DELAMINATE CALL THE SHUTTLE" FORCED by poly (Chief Engineer's Office (115, 79, 2)) +[2019-12-04 05:06:14.926] EMOTE: *no key*/(Poly) bawks! (Chief Engineer's Office (115, 79, 2)) +[2019-12-04 05:06:18.933] SAY: *no key*/(Ian) "Bark!" FORCED by poly (Head of Personnel's Office (106, 118, 2)) +[2019-12-04 05:06:22.928] SAY: *no key*/(�Medibot) "There's always a catch, and I'm the best there is." (CentCom Transport Shuttle Dock (155, 73, 1)) +[2019-12-04 05:06:26.928] EMOTE: *no key*/(Poly) squawks. (Chief Engineer's Office (115, 79, 2)) +[2019-12-04 05:06:26.931] SAY: *no key*/(cow) "moo" FORCED by poly (Holding Facility (102, 72, 1)) +[2019-12-04 05:06:28.725] EMOTE: *no key*/(monkey (686)) scratches. (Genetics Lab (161, 116, 2)) +[2019-12-04 05:06:28.928] SAY: *no key*/(Poly) "OH GOD ITS ABOUT TO DELAMINATE CALL THE SHUTTLE" FORCED by poly (Chief Engineer's Office (115, 79, 2)) +[2019-12-04 05:06:38.930] SAY: *no key*/(mouse) "Squeak!" FORCED by poly (Port Maintenance (62, 135, 2)) +[2019-12-04 05:06:38.931] SAY: *no key*/(�Medibot) "Delicious!" (CentCom Transport Shuttle Dock (155, 73, 1)) +[2019-12-04 05:06:38.938] EMOTE: *no key*/(Poly) looks in the �Power-ON cartridge's direction and takes flight. (Chief Engineer's Office (115, 79, 2)) +[2019-12-04 05:06:42.927] EMOTE: *no key*/(Tom) squeaks. (Prison Wing (103, 190, 2)) +[2019-12-04 05:06:52.930] EMOTE: *no key*/(Poly) squawks. (Chief Engineer's Office (115, 79, 2)) +[2019-12-04 05:06:58.927] EMOTE: *no key*/(mouse) shakes. (Starboard Bow Maintenance (160, 156, 2)) +[2019-12-04 05:06:58.931] SAY: *no key*/(Runtime) "Meow!" FORCED by poly (Chief Medical Officer's Office (159, 108, 2)) +[2019-12-04 05:07:02.925] SAY: *no key*/(mouse) "SQUEAK!" FORCED by poly (Starboard Bow Maintenance (160, 156, 2)) +[2019-12-04 05:07:04.929] EMOTE: *no key*/(Poly) squawks. (Chief Engineer's Office (115, 79, 2)) +[2019-12-04 05:07:06.727] EMOTE: *no key*/(grey baby slime (193)) jiggles! (Xenobiology Lab (166, 94, 2)) +[2019-12-04 05:07:06.927] EMOTE: *no key*/(mouse) runs in a circle. (Starboard Quarter Maintenance (196, 82, 2)) +[2019-12-04 05:07:08.924] EMOTE: *no key*/(mouse) shakes. (Aft Maintenance (157, 87, 2)) +[2019-12-04 05:07:12.933] SAY: *no key*/(Hattori) "There's always a catch, and I'm the best there is." (Holding Facility (108, 45, 1)) +[2019-12-04 05:07:14.924] SAY: *no key*/(mouse) "Squeak!" FORCED by poly (Starboard Quarter Maintenance (166, 81, 2)) +[2019-12-04 05:07:18.931] SAY: *no key*/(Poly) "Wire the solars, you lazy bums!" FORCED by poly (Chief Engineer's Office (115, 79, 2)) +[2019-12-04 05:07:20.726] EMOTE: *no key*/(monkey (470)) scratches. (Genetics Lab (160, 119, 2)) +[2019-12-04 05:07:24.928] SAY: *no key*/(Ian) "Bark!" FORCED by poly (Head of Personnel's Office (105, 118, 2)) +[2019-12-04 05:07:28.929] SAY: *no key*/(Nobody's Perfect) "Delicious!" (Wizard's Den (24, 75, 1)) +[2019-12-04 05:07:30.928] SAY: *no key*/(�Medibot) "I knew it, I should've been a plastic surgeon." (CentCom Transport Shuttle Dock (155, 73, 1)) +[2019-12-04 05:07:40.958] EMOTE: *no key*/(Poly) looks in the �Power-ON cartridge's direction and takes flight. (Chief Engineer's Office (115, 79, 2)) +[2019-12-04 05:07:44.942] SAY: *no key*/(Poly) "WHO TOOK THE DAMN HARDSUITS?" FORCED by poly (Chief Engineer's Office (116, 79, 2)) +[2019-12-04 05:07:46.936] EMOTE: *no key*/(mouse) squeaks. (Aft Maintenance (146, 99, 2)) +[2019-12-04 05:07:46.942] EMOTE: *no key*/(Ian) chases its tail. (Head of Personnel's Office (104, 118, 2)) +[2019-12-04 05:07:50.740] EMOTE: *no key*/(monkey (470)) scratches. (Genetics Lab (160, 118, 2)) +[2019-12-04 05:07:54.744] EMOTE: *no key*/(Travis) scratches. (Bar (133, 142, 2)) +[2019-12-04 05:07:54.938] SAY: *no key*/(Poly) "OH GOD ITS ABOUT TO DELAMINATE CALL THE SHUTTLE" FORCED by poly (Chief Engineer's Office (116, 79, 2)) +[2019-12-04 05:07:56.956] SAY: *no key*/(Poly) "OH GOD ITS ABOUT TO DELAMINATE CALL THE SHUTTLE" FORCED by poly (Chief Engineer's Office (116, 79, 2)) +[2019-12-04 05:07:58.941] SAY: *no key*/(Poly) "OH GOD ITS ABOUT TO DELAMINATE CALL THE SHUTTLE" FORCED by poly (Chief Engineer's Office (116, 79, 2)) +[2019-12-04 05:08:04.942] EMOTE: *no key*/(Paperwork) snores. (Cargo Bay (83, 123, 2)) +[2019-12-04 05:08:06.939] SAY: *no key*/(Poly) "Poly wanna cracker!" FORCED by poly (Chief Engineer's Office (116, 79, 2)) +[2019-12-04 05:08:12.940] SAY: *no key*/(Poly) "WHO TOOK THE DAMN HARDSUITS?" FORCED by poly (Chief Engineer's Office (117, 81, 2)) +[2019-12-04 05:08:16.738] EMOTE: *no key*/(grey baby slime (768)) vibrates! (Xenobiology Lab (176, 92, 2)) +[2019-12-04 05:08:20.944] SAY: *no key*/(Hattori) "I knew it, I should've been a plastic surgeon." (Holding Facility (108, 45, 1)) +[2019-12-04 05:08:22.937] SAY: *no key*/(mouse) "SQUEAK!" FORCED by poly (Starboard Bow Maintenance (160, 156, 2)) +[2019-12-04 05:08:34.958] EMOTE: *no key*/(Runtime) shivers. (Chief Medical Officer's Office (159, 108, 2)) +[2019-12-04 05:08:40.941] EMOTE: *no key*/(Poly) flutters its wings. (Chief Engineer's Office (115, 79, 2)) +[2019-12-04 05:08:42.742] EMOTE: *no key*/(monkey (235)) rolls. (Virology (157, 101, 2)) +[2019-12-04 05:08:46.941] EMOTE: *no key*/(�chicken) clucks. (Holding Facility (104, 72, 1)) +[2019-12-04 05:08:48.938] EMOTE: *no key*/(mouse) squeaks. (Aft Maintenance (126, 109, 2)) +[2019-12-04 05:08:56.942] EMOTE: *no key*/(Poly) squawks. (Chief Engineer's Office (115, 79, 2)) +[2019-12-04 05:08:58.961] SAY: *no key*/(Poly) "WHO TOOK THE DAMN HARDSUITS?" FORCED by poly (Chief Engineer's Office (115, 79, 2)) +[2019-12-04 05:09:02.741] EMOTE: *no key*/(monkey (686)) jumps! (Genetics Lab (160, 117, 2)) +[2019-12-04 05:09:14.939] EMOTE: *no key*/(Poly) looks in the �Power-ON cartridge's direction and takes flight. (Chief Engineer's Office (115, 79, 2)) +[2019-12-04 05:09:16.939] EMOTE: *no key*/(Runtime) shakes its head. (Chief Medical Officer's Office (159, 108, 2)) +[2019-12-04 05:09:18.943] EMOTE: *no key*/(Ian) barks! (Head of Personnel's Office (103, 118, 2)) +[2019-12-04 05:09:22.936] SAY: *no key*/(emergency Medibot) "Delicious!" (Unexplored Location (227, 90, 4)) +[2019-12-04 05:09:30.940] SAY: *no key*/(Hijikata) "There's always a catch, and I'm the best there is." (Holding Facility (104, 53, 1)) +[2019-12-04 05:09:34.940] SAY: *no key*/(Poly) "Wire the solars, you lazy bums!" FORCED by poly (Chief Engineer's Office (115, 79, 2)) +[2019-12-04 05:09:38.740] EMOTE: *no key*/(Runtime) walks around. (Chief Medical Officer's Office (159, 108, 2)) +[2019-12-04 05:09:38.938] SAY: *no key*/(�Medibot) "What kind of medbay is this? Everyone's dropping like flies." (CentCom Transport Shuttle Dock (154, 73, 1)) +[2019-12-04 05:09:42.938] SAY: *no key*/(emergency Medibot) "Radar, put a mask on!" (Unexplored Location (227, 90, 4)) +[2019-12-04 05:09:56.741] EMOTE: *no key*/(Runtime) crouches on its hind legs. (Chief Medical Officer's Office (159, 108, 2)) +[2019-12-04 05:10:00.939] EMOTE: *no key*/(Poly) squawks. (Chief Engineer's Office (115, 79, 2)) +[2019-12-04 05:10:02.935] SAY: *no key*/(mouse) "Squeak?" FORCED by poly (Aft Maintenance (121, 105, 2)) +[2019-12-04 05:10:06.737] EMOTE: *no key*/(grey baby slime (193)) bounces in place. (Xenobiology Lab (167, 93, 2)) +[2019-12-04 05:10:06.937] SAY: *no key*/(Accidents Happen) "I knew it, I should've been a plastic surgeon." (Hotel Staff Room (200, 141, 3)) +[2019-12-04 05:10:12.737] EMOTE: *no key*/(butterfly) stops moving... (Unexplored Location (194, 48, 3)) +[2019-12-04 05:10:12.741] EMOTE: *no key*/(Runtime) lies down. (Chief Medical Officer's Office (159, 108, 2)) +[2019-12-04 05:10:14.939] EMOTE: *no key*/(Poly) looks in the �Power-ON cartridge's direction and takes flight. (Chief Engineer's Office (115, 79, 2)) +[2019-12-04 05:10:14.940] SAY: *no key*/(Poly) "Check the crystal, you chucklefucks!" FORCED by poly (Chief Engineer's Office (115, 79, 2)) +[2019-12-04 05:10:16.936] EMOTE: *no key*/(mouse) shakes. (Aft Maintenance (160, 86, 2)) +[2019-12-04 05:10:20.939] SAY: *no key*/(mouse) "Squeak?" FORCED by poly (Aft Maintenance (126, 109, 2)) +[2019-12-04 05:10:20.944] SAY: *no key*/(Poly) "OH GOD ITS ABOUT TO DELAMINATE CALL THE SHUTTLE" FORCED by poly (Chief Engineer's Office (116, 79, 2)) +[2019-12-04 05:10:20.948] EMOTE: *no key*/(cow) brays. (Holding Facility (102, 72, 1)) +[2019-12-04 05:10:22.942] SAY: *no key*/(Tom) "SQUEAK!" FORCED by poly (Prison Wing (103, 191, 2)) +[2019-12-04 05:10:30.936] SAY: *no key*/(�Medibot) "What kind of medbay is this? Everyone's dropping like flies." (CentCom Transport Shuttle Dock (154, 73, 1)) +[2019-12-04 05:10:36.935] EMOTE: *no key*/(mouse) runs in a circle. (Port Maintenance (64, 136, 2)) +[2019-12-04 05:10:36.938] SAY: *no key*/(Poly) "Check the crystal, you chucklefucks!" FORCED by poly (Chief Engineer's Office (115, 79, 2)) +[2019-12-04 05:10:42.939] EMOTE: *no key*/(Paperwork) snores. (Cargo Bay (83, 121, 2)) +[2019-12-04 05:10:44.740] EMOTE: *no key*/(monkey (316)) jumps! (Virology (161, 99, 2)) +[2019-12-04 05:10:48.941] EMOTE: *no key*/(Poly) squawks. (Chief Engineer's Office (115, 79, 2)) +[2019-12-04 05:10:58.940] SAY: *no key*/(Poly) "OH GOD ITS ABOUT TO DELAMINATE CALL THE SHUTTLE" FORCED by poly (Chief Engineer's Office (115, 79, 2)) +[2019-12-04 05:11:08.942] SAY: *no key*/(Poly) "OH GOD ITS ABOUT TO DELAMINATE CALL THE SHUTTLE" FORCED by poly (Chief Engineer's Office (115, 79, 2)) +[2019-12-04 05:11:12.740] EMOTE: *no key*/(monkey (474)) scratches. (Genetics Lab (160, 120, 2)) +[2019-12-04 05:11:12.936] EMOTE: *no key*/(mouse) shakes. (Starboard Quarter Maintenance (163, 81, 2)) +[2019-12-04 05:11:12.937] SAY: *no key*/(�Medibot) "Delicious!" (CentCom Transport Shuttle Dock (155, 73, 1)) +[2019-12-04 05:11:12.942] SAY: *no key*/(Poly) "I have lived many lives!" FORCED by poly (Chief Engineer's Office (115, 79, 2)) +[2019-12-04 05:11:16.942] EMOTE: *no key*/(Poly) looks in the �Power-ON cartridge's direction and takes flight. (Chief Engineer's Office (115, 79, 2)) +[2019-12-04 05:11:17.435] GAME: Random Event triggering: Shuttle Loan (/datum/round_event/shuttle_loan) +[2019-12-04 05:11:18.938] SAY: *no key*/(Poly) "Check the crystal, you chucklefucks!" FORCED by poly (Chief Engineer's Office (115, 79, 2)) +[2019-12-04 05:11:20.937] SAY: *no key*/(emergency Medibot) "There's always a catch, and I'm the best there is." (Unexplored Location (227, 90, 4)) +[2019-12-04 05:11:26.740] EMOTE: *no key*/(monkey (686)) waves her tail. (Genetics Lab (161, 120, 2)) +[2019-12-04 05:11:30.938] SAY: *no key*/(Poly) "Wire the solars, you lazy bums!" FORCED by poly (Chief Engineer's Office (116, 79, 2)) +[2019-12-04 05:11:38.942] SAY: *no key*/(Hijikata) "There's always a catch, and I'm the best there is." (Holding Facility (104, 53, 1)) +[2019-12-04 05:11:42.941] SAY: *no key*/(Nobody's Perfect) "Radar, put a mask on!" (Wizard's Den (24, 75, 1)) +[2019-12-04 05:11:44.939] SAY: *no key*/(Poly) "I have lived many lives!" FORCED by poly (Chief Engineer's Office (117, 82, 2)) +[2019-12-04 05:11:46.941] SAY: *no key*/(emergency Medibot) "What kind of medbay is this? Everyone's dropping like flies." (Unexplored Location (227, 90, 4)) +[2019-12-04 05:11:48.940] EMOTE: *no key*/(Poly) squawks. (Chief Engineer's Office (117, 82, 2)) +[2019-12-04 05:11:50.936] EMOTE: *no key*/(mouse) runs in a circle. (Aft Maintenance (146, 94, 2)) +[2019-12-04 05:12:02.942] SAY: *no key*/(Hattori) "I knew it, I should've been a plastic surgeon." (Holding Facility (108, 45, 1)) +[2019-12-04 05:12:04.941] SAY: *no key*/(Tom) "Squeak!" FORCED by poly (Prison Wing (104, 189, 2)) +[2019-12-04 05:12:04.943] SAY: *no key*/(Hattori) "I knew it, I should've been a plastic surgeon." (Holding Facility (108, 45, 1)) +[2019-12-04 05:12:10.743] EMOTE: *no key*/(monkey (470)) rolls. (Genetics Lab (161, 118, 2)) +[2019-12-04 05:12:10.940] EMOTE: *no key*/(Poly) bawks! (Chief Engineer's Office (115, 79, 2)) +[2019-12-04 05:12:16.742] EMOTE: *no key*/(monkey (470)) waves her tail. (Genetics Lab (161, 118, 2)) +[2019-12-04 05:12:16.743] EMOTE: *no key*/(Ian) dances around. (Head of Personnel's Office (104, 118, 2)) +[2019-12-04 05:12:18.942] SAY: *no key*/(Poly) "I have lived many lives!" FORCED by poly (Chief Engineer's Office (115, 79, 2)) +[2019-12-04 05:12:22.943] SAY: *no key*/(Poly) "Poly wanna cracker!" FORCED by poly (Chief Engineer's Office (115, 79, 2)) +[2019-12-04 05:12:28.937] SAY: *no key*/(�Medibot) "What kind of medbay is this? Everyone's dropping like flies." (CentCom Transport Shuttle Dock (154, 73, 1)) +[2019-12-04 05:12:30.937] SAY: *no key*/(mouse) "SQUEAK!" FORCED by poly (Aft Maintenance (147, 95, 2)) +[2019-12-04 05:12:30.941] EMOTE: *no key*/(Runtime) shivers. (Chief Medical Officer's Office (159, 108, 2)) +[2019-12-04 05:12:32.939] EMOTE: *no key*/(Poly) flutters its wings. (Chief Engineer's Office (115, 79, 2)) +[2019-12-04 05:12:34.528] GAME: Rebooting World. Initiated by BigFatAnimeTiddies. +[2019-12-04 05:12:34.891] ACCESS: Logout: BigFatAnimeTiddies/(Alessandra Joghs) +[2019-12-04 05:12:34.892] GAME: BigFatAnimeTiddies[DC]/(Alessandra Joghs) BigFatAnimeTiddies[DC]/(Alessandra Joghs) is no longer owning mob Alessandra Joghs(/mob/dead/observer) (Genetics Lab (154, 115, 2)) diff --git a/data/logs/2019/12/03/round-23.56.34/gravity.html b/data/logs/2019/12/03/round-23.56.34/gravity.html new file mode 100644 index 00000000..b349b969 --- /dev/null +++ b/data/logs/2019/12/03/round-23.56.34/gravity.html @@ -0,0 +1,6 @@ +23:56:53 [0x20070f6] (113,123,2) || the gravitational generator has regained power.
+23:56:53 [0x20070f6] (113,123,2) || the gravitational generator is now charging.
+23:57:06 [0x20070f6] (113,123,2) || the gravitational generator has regained power.
+23:57:06 [0x20070f6] (113,123,2) || the gravitational generator is now charging.
+23:57:33 [0x20070f6] (113,123,2) || the gravitational generator has regained power.
+23:57:33 [0x20070f6] (113,123,2) || the gravitational generator is now charging.
diff --git a/data/logs/2019/12/03/round-23.56.34/hrefs.log b/data/logs/2019/12/03/round-23.56.34/hrefs.log new file mode 100644 index 00000000..81de7487 --- /dev/null +++ b/data/logs/2019/12/03/round-23.56.34/hrefs.log @@ -0,0 +1,24 @@ +[2019-12-04 04:56:34.966] Starting up round ID . + - ------------------------- +[2019-12-04 04:56:38.079] HREF: BigFatAnimeTiddies (usr:BigFatAnimeTiddies[(11,174,1)]) : _src_=chat&proc=analyzeClientData¶m[cookie]={"connData":[{"ckey":"bigfatanimetiddies","ip":"68.38.94.206","compid":"3498261404"},{"ckey":"bigfatanimetiddies","ip":null,"compid":"3498261404"},{"ckey":"bigfatanimetiddies","ip":"127.0.0.1","compid":"3498261404"},{"ckey":"guest3498261404","ip":null,"compid":"3498261404"}]} +[2019-12-04 04:56:41.202] HREF: BigFatAnimeTiddies (usr:BigFatAnimeTiddies[(11,174,1)]) : BigFatAnimeTiddies src=[mob_9];ready=1 +[2019-12-04 04:57:37.303] HREF: BigFatAnimeTiddies (usr:Alessandra Joghs[(158,110,2)]) : bigfatanimetiddies's admin datum (!localhost!) src=[0x210012a7];admin_token=2101191870830460770617956292401075;create_object=1 +[2019-12-04 04:57:41.476] HREF: BigFatAnimeTiddies (usr:Alessandra Joghs[(158,110,2)]) : bigfatanimetiddies's admin datum (!localhost!) src=%5B0x210012a7%5D%3Badmin_token%3D2101191870830460770617956292401075&admin_token=2101191870830460770617956292401075&filter=part&offset=x%2Cy%2Cz&offset_type=relative&object_count=1&object_dir=&object_name=&object_where=onfloor +[2019-12-04 04:57:45.362] HREF: BigFatAnimeTiddies (usr:Alessandra Joghs[(158,110,2)]) : bigfatanimetiddies's admin datum (!localhost!) src=%5B0x210012a7%5D%3Badmin_token%3D2101191870830460770617956292401075&admin_token=2101191870830460770617956292401075&filter=part&offset=x%2Cy%2Cz&offset_type=relative&object_count=1&object_dir=&object_name=&object_where=onfloor&object_list=%2Fobj%2Fitem%2Fstorage%2Fbox%2Fstockparts%2Fdeluxe +[2019-12-04 04:57:47.027] HREF: BigFatAnimeTiddies (usr:Alessandra Joghs[(158,110,2)]) : bigfatanimetiddies's admin datum (!localhost!) src=%5B0x210012a7%5D%3Badmin_token%3D2101191870830460770617956292401075&admin_token=2101191870830460770617956292401075&filter=part&offset=x%2Cy%2Cz&offset_type=relative&object_count=1&object_dir=&object_name=&object_where=onfloor&object_list=%2Fobj%2Fitem%2Fstorage%2Fpart_replacer%2Fbluespace +[2019-12-04 04:58:09.110] HREF: BigFatAnimeTiddies (usr:Alessandra Joghs[(153,114,2)]) : The cloning console src=[0x200798f];task=autoprocess +[2019-12-04 04:58:15.205] HREF: BigFatAnimeTiddies (usr:Alessandra Joghs[(153,114,2)]) : The cloning console src=[0x200798f];menu=2 +[2019-12-04 04:58:15.995] HREF: BigFatAnimeTiddies (usr:Alessandra Joghs[(153,114,2)]) : The cloning console src=[0x200798f];view_rec=bbfb +[2019-12-04 04:58:16.675] HREF: BigFatAnimeTiddies (usr:Alessandra Joghs[(153,114,2)]) : The cloning console src=[0x200798f];clone=bbfb;empty=TRUE +[2019-12-04 04:59:48.802] HREF: BigFatAnimeTiddies (usr:Alessandra Joghs[(153,113,2)]) : The cloning console src=[0x200798f];menu=2 +[2019-12-04 04:59:50.993] HREF: BigFatAnimeTiddies (usr:Alessandra Joghs[(154,114,2)]) : The cloning console src=[0x200798f];view_rec=bbfb +[2019-12-04 04:59:53.937] HREF: BigFatAnimeTiddies (usr:Alessandra Joghs[(154,114,2)]) : The cloning console src=[0x200798f];clone=bbfb +[2019-12-04 04:59:59.168] HREF: BigFatAnimeTiddies (usr:Alessandra Joghs[(154,114,2)]) : The cloning console src=[0x200798f];del_rec=1 +[2019-12-04 05:00:02.462] HREF: BigFatAnimeTiddies (usr:Alessandra Joghs[(154,114,2)]) : The cloning console src=[0x200798f];del_rec=1 +[2019-12-04 05:00:03.656] HREF: BigFatAnimeTiddies (usr:Alessandra Joghs[(154,114,2)]) : The cloning console src=[0x200798f];menu=1 +[2019-12-04 05:00:09.130] HREF: BigFatAnimeTiddies (usr:Alessandra Joghs[(0,0,0)]) : The cloning console src=[0x200798f];refresh=1 +[2019-12-04 05:00:12.768] HREF: BigFatAnimeTiddies (usr:Alessandra Joghs[(153,113,2)]) : The cloning console src=[0x200798f];menu=2 +[2019-12-04 05:00:15.074] HREF: BigFatAnimeTiddies (usr:Alessandra Joghs[(154,114,2)]) : The cloning console src=[0x200798f];view_rec=bbfb +[2019-12-04 05:00:23.550] HREF: BigFatAnimeTiddies (usr:Alessandra Joghs[(154,114,2)]) : bigfatanimetiddies's admin datum (!localhost!) src=[0x210012a7];admin_token=2101191870830460770617956292401075;create_object=1 +[2019-12-04 05:00:40.157] HREF: BigFatAnimeTiddies (usr:Alessandra Joghs[(154,115,2)]) : bigfatanimetiddies's admin datum (!localhost!) src=%5B0x210012a7%5D%3Badmin_token%3D2101191870830460770617956292401075&admin_token=2101191870830460770617956292401075&filter=debug&offset=x%2Cy%2Cz&offset_type=relative&object_count=1&object_dir=&object_name=&object_where=onfloor&object_list=%2Fobj%2Fitem%2Fgun%2Fenergy%2Fbeam_rifle%2Fdebug +[2019-12-04 05:01:43.838] HREF: BigFatAnimeTiddies (usr:Alessandra Joghs[(154,114,2)]) : The cloning console src=[0x200798f];clone=bbfb diff --git a/data/logs/2019/12/03/round-23.56.34/initialize.log b/data/logs/2019/12/03/round-23.56.34/initialize.log new file mode 100644 index 00000000..965ddcdf --- /dev/null +++ b/data/logs/2019/12/03/round-23.56.34/initialize.log @@ -0,0 +1,835 @@ +Path : /mob/dview +- Didn't call atom/Initialize() +Path : /obj/item/clothing/mask/breath +- Didn't return an Initialize hint +Path : /obj/item/clothing/mask/cigarette/cigar/cohiba +- Didn't return an Initialize hint +Path : /obj/item/clothing/mask/cigarette/cigar/havana +- Didn't return an Initialize hint +Path : /obj/item/clothing/mask/cigarette/cigar +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/color/red +- Didn't return an Initialize hint +Path : /obj/item/clothing/shoes/sneakers/brown +- Didn't return an Initialize hint +Path : /obj/item/clothing/suit/armor/vest +- Didn't return an Initialize hint +Path : /obj/item/clothing/head/helmet/swat +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/color/green +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/jabroni +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/geisha +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/kilt +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/roman +- Didn't return an Initialize hint +Path : /obj/item/clothing/suit/armor/tdome/red +- Didn't return an Initialize hint +Path : /obj/item/clothing/head/helmet/thunderdome +- Didn't return an Initialize hint +Path : /obj/item/clothing/suit/armor/tdome/green +- Didn't return an Initialize hint +Path : /obj/item/clothing/mask/surgical +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/plasmaman +- Didn't return an Initialize hint +Path : /obj/item/clothing/head/helmet/space/plasmaman +- Didn't return an Initialize hint +Path : /obj/item/clothing/head/chefhat +- Didn't return an Initialize hint +Path : /obj/item/clothing/suit/apron/chef +- Didn't return an Initialize hint +Path : /obj/item/clothing/accessory/medal/gold +- Didn't return an Initialize hint +Path : /obj/item/clothing/accessory/medal +- Didn't return an Initialize hint +Path : /obj/structure/closet/secure_closet/freezer/meat +- Didn't return an Initialize hint +Path : /obj/structure/closet/secure_closet/freezer/fridge +- Didn't return an Initialize hint +Path : /obj/structure/closet/secure_closet/freezer/kitchen +- Didn't return an Initialize hint +Path : /obj/item/clothing/accessory/lawyers_badge +- Didn't return an Initialize hint +Path : /obj/item/clothing/accessory/medal/silver +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/waiter +- Didn't return an Initialize hint +Path : /obj/item/clothing/accessory/waistcoat +- Didn't return an Initialize hint +Path : /obj/item/clothing/head/soft/mime +- Didn't return an Initialize hint +Path : /obj/item/clothing/suit/toggle/chef +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/rank/chef +- Didn't return an Initialize hint +Path : /obj/item/clothing/suit/wizrobe/black +- Didn't return an Initialize hint +Path : /obj/item/clothing/head/wizard/black +- Didn't return an Initialize hint +Path : /obj/item/clothing/head/helmet/sec +- Didn't return an Initialize hint +Path : /obj/item/clothing/glasses/hud/security/sunglasses +- Didn't return an Initialize hint +Path : /obj/item/clothing/head/helmet/swat/nanotrasen +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/syndicate +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/syndicate/skirt +- Didn't return an Initialize hint +Path : /obj/item/clothing/shoes/sneakers/black +- Didn't return an Initialize hint +Path : /obj/item/clothing/glasses/night +- Didn't return an Initialize hint +Path : /obj/item/clothing/mask/gas +- Didn't return an Initialize hint +Path : /obj/item/clothing/shoes/sandal/marisa +- Didn't return an Initialize hint +Path : /obj/item/clothing/suit/wizrobe/marisa +- Didn't return an Initialize hint +Path : /obj/item/clothing/head/wizard/marisa +- Didn't return an Initialize hint +Path : /obj/item/clothing/suit/wizrobe/red +- Didn't return an Initialize hint +Path : /obj/item/clothing/head/wizard/red +- Didn't return an Initialize hint +Path : /obj/item/clothing/shoes/sandal/magic +- Didn't return an Initialize hint +Path : /obj/item/clothing/gloves/color/latex +- Didn't return an Initialize hint +Path : /obj/item/clothing/suit/wizrobe/magusblue +- Didn't return an Initialize hint +Path : /obj/item/clothing/head/wizard/magus +- Didn't return an Initialize hint +Path : /obj/item/clothing/suit/wizrobe/magusred +- Didn't return an Initialize hint +Path : /obj/item/clothing/shoes/magboots +- Didn't return an Initialize hint +Path : /obj/item/clothing/ears/earmuffs +- Didn't return an Initialize hint +Path : /obj/item/clothing/head/helmet/space/hardsuit/deathsquad +- Didn't return an Initialize hint +Path : /obj/item/clothing/suit/space/hardsuit/deathsquad +- Didn't return an Initialize hint +Path : /obj/item/clothing/gloves/combat +- Didn't return an Initialize hint +Path : /obj/item/clothing/shoes/combat/swat +- Didn't return an Initialize hint +Path : /obj/item/clothing/mask/gas/sechailer/swat +- Didn't return an Initialize hint +Path : /obj/item/clothing/accessory/medal/gold/captain +- Didn't return an Initialize hint +Path : /obj/item/clothing/accessory/medal/silver/valor +- Didn't return an Initialize hint +Path : /obj/item/clothing/accessory/medal/silver/security +- Didn't return an Initialize hint +Path : /obj/item/clothing/accessory/medal/bronze_heart +- Didn't return an Initialize hint +Path : /obj/item/clothing/accessory/medal/plasma/nobel_science +- Didn't return an Initialize hint +Path : /obj/item/clothing/accessory/medal/conduct +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/rank/curator/treasure_hunter +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/skirt/black +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/shorts/black +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/pants/track +- Didn't return an Initialize hint +Path : /obj/item/clothing/accessory/armband/deputy +- Didn't return an Initialize hint +Path : /obj/item/clothing/shoes/jackboots +- Didn't return an Initialize hint +Path : /obj/item/clothing/shoes/laceup +- Didn't return an Initialize hint +Path : /obj/item/clothing/neck/stripedredscarf +- Didn't return an Initialize hint +Path : /obj/item/clothing/neck/tie/red +- Didn't return an Initialize hint +Path : /obj/item/clothing/head/helmet/space/beret +- Didn't return an Initialize hint +Path : /obj/item/clothing/suit/curator +- Didn't return an Initialize hint +Path : /obj/item/clothing/suit/space/officer +- Didn't return an Initialize hint +Path : /obj/item/clothing/gloves/fingerless +- Didn't return an Initialize hint +Path : /obj/item/clothing/gloves/color/black +- Didn't return an Initialize hint +Path : /obj/item/clothing/glasses/eyepatch +- Didn't return an Initialize hint +Path : /obj/item/clothing/head/hooded/winterhood/cargo +- Didn't return an Initialize hint +Path : /obj/item/clothing/suit/hooded/wintercoat/cargo +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/rank/cargotech +- Didn't return an Initialize hint +Path : /obj/item/clothing/head/soft +- Didn't return an Initialize hint +Path : /obj/item/clothing/neck/cloak/qm +- Didn't return an Initialize hint +Path : /obj/item/clothing/head/beret/qm +- Didn't return an Initialize hint +Path : /obj/item/clothing/accessory/medal/ribbon/cargo +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/rank/cargo +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/rank/cargo/skirt +- Didn't return an Initialize hint +Path : /obj/item/clothing/suit/fire/firefighter +- Didn't return an Initialize hint +Path : /obj/item/clothing/head/hooded/winterhood/qm +- Didn't return an Initialize hint +Path : /obj/item/clothing/suit/hooded/wintercoat/qm +- Didn't return an Initialize hint +Path : /obj/item/clothing/suit/judgerobe +- Didn't return an Initialize hint +Path : /obj/item/clothing/head/powdered_wig +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/lawyer/female +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/lawyer/black +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/lawyer/red +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/lawyer/bluesuit +- Didn't return an Initialize hint +Path : /obj/item/clothing/suit/toggle/lawyer +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/lawyer/purpsuit +- Didn't return an Initialize hint +Path : /obj/item/clothing/suit/toggle/lawyer/purple +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/lawyer/blacksuit +- Didn't return an Initialize hint +Path : /obj/item/clothing/suit/toggle/lawyer/black +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/trek/medsci +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/trek/command +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/trek/engsec +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/schoolgirl/green +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/schoolgirl +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/schoolgirl/orange +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/schoolgirl/red +- Didn't return an Initialize hint +Path : /obj/item/clothing/suit/armor/riot/knight/blue +- Didn't return an Initialize hint +Path : /obj/item/clothing/head/helmet/knight/blue +- Didn't return an Initialize hint +Path : /obj/item/clothing/head/crown/fancy +- Didn't return an Initialize hint +Path : /obj/item/clothing/suit/armor/riot/knight/red +- Didn't return an Initialize hint +Path : /obj/item/clothing/head/helmet/knight/red +- Didn't return an Initialize hint +Path : /obj/item/clothing/suit/nun +- Didn't return an Initialize hint +Path : /obj/item/clothing/head/nun_hood +- Didn't return an Initialize hint +Path : /obj/item/clothing/suit/holidaypriest +- Didn't return an Initialize hint +Path : /obj/item/clothing/suit/beekeeper_suit +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/color/white +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/skirt/color/white +- Didn't return an Initialize hint +Path : /obj/item/clothing/shoes/sneakers/white +- Didn't return an Initialize hint +Path : /obj/item/clothing/head/beekeeper_head +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/color/rainbow +- Didn't return an Initialize hint +Path : /obj/item/clothing/glasses/sunglasses +- Didn't return an Initialize hint +Path : /obj/item/clothing/gloves/color/latex/nitrile +- Didn't return an Initialize hint +Path : /obj/item/clothing/suit/apron/surgical +- Didn't return an Initialize hint +Path : /obj/item/clothing/mask/cigarette/pipe +- Didn't return an Initialize hint +Path : /obj/item/clothing/suit/bomb_suit +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/color/black +- Didn't return an Initialize hint +Path : /obj/item/clothing/head/bomb_hood +- Didn't return an Initialize hint +Path : /obj/item/clothing/suit/bomb_suit/security +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/rank/security +- Didn't return an Initialize hint +Path : /obj/item/clothing/head/bomb_hood/security +- Didn't return an Initialize hint +Path : /obj/item/clothing/suit/armor/bulletproof +- Didn't return an Initialize hint +Path : /obj/item/clothing/head/helmet/alt +- Didn't return an Initialize hint +Path : /obj/item/clothing/suit/armor/riot +- Didn't return an Initialize hint +Path : /obj/item/clothing/head/helmet/riot +- Didn't return an Initialize hint +Path : /obj/item/clothing/suit/armor/laserproof +- Didn't return an Initialize hint +Path : /obj/item/clothing/suit/bio_suit/security +- Didn't return an Initialize hint +Path : /obj/item/clothing/head/bio_hood/security +- Didn't return an Initialize hint +Path : /obj/item/clothing/head/helmet/space/hardsuit/security/hos +- Didn't return an Initialize hint +Path : /obj/item/clothing/suit/space/hardsuit/security/hos +- Didn't return an Initialize hint +Path : /obj/item/clothing/mask/gas/sechailer +- Didn't return an Initialize hint +Path : /obj/item/clothing/neck/cloak/hos +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/hosparadefem +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/hosparademale +- Didn't return an Initialize hint +Path : /obj/item/clothing/suit/armor/vest/leather +- Didn't return an Initialize hint +Path : /obj/item/clothing/suit/armor/hos +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/rank/head_of_security/skirt +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/rank/head_of_security/alt +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/rank/head_of_security/alt/skirt +- Didn't return an Initialize hint +Path : /obj/item/clothing/head/HoS +- Didn't return an Initialize hint +Path : /obj/item/clothing/glasses/hud/security/sunglasses/eyepatch +- Didn't return an Initialize hint +Path : /obj/item/clothing/glasses/hud/security/sunglasses/gars/supergars +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/rank/head_of_security/grey +- Didn't return an Initialize hint +Path : /obj/item/clothing/head/hooded/winterhood/hos +- Didn't return an Initialize hint +Path : /obj/item/clothing/suit/hooded/wintercoat/hos +- Didn't return an Initialize hint +Path : /obj/item/clothing/head/helmet/space/hardsuit/security +- Didn't return an Initialize hint +Path : /obj/item/clothing/suit/space/hardsuit/security +- Didn't return an Initialize hint +Path : /obj/item/clothing/suit/straight_jacket +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/rank/prisoner +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/rank/prisoner/skirt +- Didn't return an Initialize hint +Path : /obj/item/clothing/shoes/sneakers/orange +- Didn't return an Initialize hint +Path : /obj/item/clothing/head/helmet +- Didn't return an Initialize hint +Path : /obj/item/clothing/suit/armor/vest/warden +- Didn't return an Initialize hint +Path : /obj/item/clothing/head/warden +- Didn't return an Initialize hint +Path : /obj/item/clothing/head/warden/drill +- Didn't return an Initialize hint +Path : /obj/item/clothing/head/beret/sec/navywarden +- Didn't return an Initialize hint +Path : /obj/item/clothing/suit/armor/vest/warden/alt +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/rank/warden/navyblue +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/rank/warden/skirt +- Didn't return an Initialize hint +Path : /obj/item/clothing/gloves/krav_maga/sec +- Didn't return an Initialize hint +Path : /obj/item/clothing/gloves/color/brown +- Didn't return an Initialize hint +Path : /obj/item/clothing/suit/jacket +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/polychromic/jumpsuit +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/polychromic/shirt +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/polychromic/kilt +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/polychromic/skirt +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/polychromic/shorts +- Didn't return an Initialize hint +Path : /obj/item/clothing/mask/bandana/red +- Didn't return an Initialize hint +Path : /obj/item/clothing/mask/bandana/blue +- Didn't return an Initialize hint +Path : /obj/item/clothing/mask/bandana/gold +- Didn't return an Initialize hint +Path : /obj/item/clothing/head/hardhat/red +- Didn't return an Initialize hint +Path : /obj/item/clothing/glasses/meson +- Didn't return an Initialize hint +Path : /obj/item/clothing/gloves/color/rainbow +- Didn't return an Initialize hint +Path : /obj/item/clothing/head/hooded/flashsuit +- Didn't return an Initialize hint +Path : /obj/item/clothing/suit/hooded/flashsuit +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/shorts/purple +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/shorts/grey +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/shorts/red +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/shorts/blue +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/shorts/green +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/polychromic/shortpants +- Didn't return an Initialize hint +Path : /obj/item/clothing/gloves/boxing/blue +- Didn't return an Initialize hint +Path : /obj/item/clothing/gloves/boxing/green +- Didn't return an Initialize hint +Path : /obj/item/clothing/gloves/boxing/yellow +- Didn't return an Initialize hint +Path : /obj/item/clothing/gloves/boxing +- Didn't return an Initialize hint +Path : /obj/item/clothing/mask/luchador +- Didn't return an Initialize hint +Path : /obj/item/clothing/mask/luchador/rudos +- Didn't return an Initialize hint +Path : /obj/item/clothing/mask/luchador/tecnicos +- Didn't return an Initialize hint +Path : /obj/item/clothing/suit/bluetag +- Didn't return an Initialize hint +Path : /obj/item/clothing/head/helmet/bluetaghelm +- Didn't return an Initialize hint +Path : /obj/item/clothing/suit/redtag +- Didn't return an Initialize hint +Path : /obj/item/clothing/head/helmet/redtaghelm +- Didn't return an Initialize hint +Path : /obj/item/clothing/gloves/color/white +- Didn't return an Initialize hint +Path : /obj/item/clothing/glasses/regular +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/rank/vice +- Didn't return an Initialize hint +Path : /obj/item/clothing/gloves/color/fyellow +- Didn't return an Initialize hint +Path : /obj/item/clothing/gloves/color/red +- Didn't return an Initialize hint +Path : /obj/item/clothing/shoes/kindleKicks +- Didn't return an Initialize hint +Path : /obj/item/clothing/mask/balaclava +- Didn't return an Initialize hint +Path : /obj/item/clothing/head/welding +- Didn't return an Initialize hint +Path : /obj/item/clothing/gloves/color/yellow +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/pj/red +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/pj/blue +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/rank/mailman +- Didn't return an Initialize hint +Path : /obj/item/clothing/head/mailman +- Didn't return an Initialize hint +Path : /obj/item/clothing/suit/space/eva +- Didn't return an Initialize hint +Path : /obj/item/clothing/head/helmet/space/eva +- Didn't return an Initialize hint +Path : /obj/item/clothing/head/bearpelt +- Didn't return an Initialize hint +Path : /obj/item/clothing/suit/bio_suit/scientist +- Didn't return an Initialize hint +Path : /obj/item/clothing/head/bio_hood/scientist +- Didn't return an Initialize hint +Path : /obj/structure/closet/secure_closet/freezer/cream_pie +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/burial +- Didn't return an Initialize hint +Path : /obj/item/clothing/mask/cigarette/space_cigarette +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/suit_jacket/red +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/skirt/color/green +- Didn't return an Initialize hint +Path : /obj/item/clothing/mask/bandana/green +- Didn't return an Initialize hint +Path : /obj/item/clothing/suit/hazardvest +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/color/grey +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/skirt/color/grey +- Didn't return an Initialize hint +Path : /obj/item/clothing/head/soft/grey +- Didn't return an Initialize hint +Path : /obj/item/clothing/mask/bandana/black +- Didn't return an Initialize hint +Path : /obj/item/clothing/head/hardhat +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/skirt/color/black +- Didn't return an Initialize hint +Path : /obj/item/clothing/suit/jacket/leather/overcoat +- Didn't return an Initialize hint +Path : /obj/item/clothing/head/that +- Didn't return an Initialize hint +Path : /obj/item/clothing/head/soft/black +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/rank/det +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/rank/det/skirt +- Didn't return an Initialize hint +Path : /obj/item/clothing/suit/det_suit +- Didn't return an Initialize hint +Path : /obj/item/clothing/head/fedora/det_hat +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/rank/det/grey +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/rank/det/grey/skirt +- Didn't return an Initialize hint +Path : /obj/item/clothing/suit/det_suit/grey +- Didn't return an Initialize hint +Path : /obj/item/clothing/head/fedora +- Didn't return an Initialize hint +Path : /obj/item/clothing/suit/armor/vest/det_suit +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/suit_jacket/female +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/suit_jacket/really_black +- Didn't return an Initialize hint +Path : /obj/item/clothing/suit/ianshirt +- Didn't return an Initialize hint +Path : /obj/item/clothing/head/soft/rainbow +- Didn't return an Initialize hint +Path : /obj/item/clothing/shoes/sneakers/rainbow +- Didn't return an Initialize hint +Path : /obj/item/clothing/glasses/welding +- Didn't return an Initialize hint +Path : /obj/item/clothing/head/helmet/space/hardsuit/captain +- Didn't return an Initialize hint +Path : /obj/item/clothing/suit/space/hardsuit/captain +- Didn't return an Initialize hint +Path : /obj/item/clothing/glasses/science +- Didn't return an Initialize hint +Path : /obj/item/clothing/accessory/armband/medblue +- Didn't return an Initialize hint +Path : /obj/item/clothing/head/hooded/winterhood/captain +- Didn't return an Initialize hint +Path : /obj/item/clothing/suit/hooded/wintercoat/captain +- Didn't return an Initialize hint +Path : /obj/item/clothing/neck/cloak/cap +- Didn't return an Initialize hint +Path : /obj/item/clothing/neck/petcollar +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/rank/captain +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/rank/captain/skirt +- Didn't return an Initialize hint +Path : /obj/item/clothing/suit/armor/vest/capcarapace +- Didn't return an Initialize hint +Path : /obj/item/clothing/head/caphat +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/captainparade +- Didn't return an Initialize hint +Path : /obj/item/clothing/suit/armor/vest/capcarapace/alt +- Didn't return an Initialize hint +Path : /obj/item/clothing/head/caphat/parade +- Didn't return an Initialize hint +Path : /obj/item/clothing/head/caphat/beret +- Didn't return an Initialize hint +Path : /obj/item/clothing/suit/captunic +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/rank/captain/femformal +- Didn't return an Initialize hint +Path : /obj/item/clothing/glasses/sunglasses/gar/supergar +- Didn't return an Initialize hint +Path : /obj/item/clothing/gloves/color/captain +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/rank/chemist +- Didn't return an Initialize hint +Path : /obj/item/clothing/suit/toggle/labcoat/chemist +- Didn't return an Initialize hint +Path : /obj/item/clothing/neck/stethoscope +- Didn't return an Initialize hint +Path : /obj/item/clothing/neck/cloak/hop +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/rank/head_of_personnel +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/rank/head_of_personnel/skirt +- Didn't return an Initialize hint +Path : /obj/item/clothing/head/hopcap +- Didn't return an Initialize hint +Path : /obj/item/clothing/head/hopcap/beret +- Didn't return an Initialize hint +Path : /obj/item/clothing/suit/armor/vest/alt +- Didn't return an Initialize hint +Path : /obj/item/clothing/head/hooded/winterhood/hop +- Didn't return an Initialize hint +Path : /obj/item/clothing/suit/hooded/wintercoat/hop +- Didn't return an Initialize hint +Path : /obj/item/clothing/suit/radiation +- Didn't return an Initialize hint +Path : /obj/item/clothing/head/radiation +- Didn't return an Initialize hint +Path : /obj/item/clothing/mask/facehugger/lamarr +- Didn't return an Initialize hint +Path : /obj/item/clothing/accessory/armband/science +- Didn't return an Initialize hint +Path : /obj/item/clothing/accessory/armband/cargo +- Didn't return an Initialize hint +Path : /obj/item/clothing/head/helmet/space/hardsuit/medical +- Didn't return an Initialize hint +Path : /obj/item/clothing/suit/space/hardsuit/medical +- Didn't return an Initialize hint +Path : /obj/item/clothing/neck/cloak/rd +- Didn't return an Initialize hint +Path : /obj/item/clothing/head/beret/rd +- Didn't return an Initialize hint +Path : /obj/item/clothing/suit/toggle/labcoat +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/rank/research_director +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/rank/research_director/skirt +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/rank/research_director/alt +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/rank/research_director/alt/skirt +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/rank/research_director/turtleneck +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/rank/research_director/turtleneck/skirt +- Didn't return an Initialize hint +Path : /obj/item/clothing/suit/armor/reactive/teleport +- Didn't return an Initialize hint +Path : /obj/item/clothing/head/hooded/winterhood/rd +- Didn't return an Initialize hint +Path : /obj/item/clothing/suit/hooded/wintercoat/rd +- Didn't return an Initialize hint +Path : /obj/item/clothing/head/helmet/space/hardsuit/rd +- Didn't return an Initialize hint +Path : /obj/item/clothing/suit/space/hardsuit/rd +- Didn't return an Initialize hint +Path : /obj/item/clothing/suit/bio_suit/general +- Didn't return an Initialize hint +Path : /obj/item/clothing/head/bio_hood/general +- Didn't return an Initialize hint +Path : /obj/item/clothing/glasses/hud/health +- Didn't return an Initialize hint +Path : /obj/item/clothing/accessory/medal/greytide +- Didn't return an Initialize hint +Path : /obj/item/clothing/suit/bio_suit/janitor +- Didn't return an Initialize hint +Path : /obj/item/clothing/head/bio_hood/janitor +- Didn't return an Initialize hint +Path : /obj/item/clothing/mask/muzzle +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/rank/miner/lavaland +- Didn't return an Initialize hint +Path : /obj/item/clothing/shoes/workboots/mining +- Didn't return an Initialize hint +Path : /obj/item/clothing/head/hooded/winterhood/miner +- Didn't return an Initialize hint +Path : /obj/item/clothing/suit/hooded/wintercoat/miner +- Didn't return an Initialize hint +Path : /obj/item/clothing/mask/breath/medical +- Didn't return an Initialize hint +Path : /obj/item/clothing/neck/cloak/cmo +- Didn't return an Initialize hint +Path : /obj/item/clothing/head/beret/cmo +- Didn't return an Initialize hint +Path : /obj/item/clothing/suit/bio_suit/cmo +- Didn't return an Initialize hint +Path : /obj/item/clothing/head/bio_hood/cmo +- Didn't return an Initialize hint +Path : /obj/item/clothing/suit/toggle/labcoat/cmo +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/rank/chief_medical_officer +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/rank/chief_medical_officer/skirt +- Didn't return an Initialize hint +Path : /obj/item/clothing/accessory/medal/ribbon/medical_doctor +- Didn't return an Initialize hint +Path : /obj/item/clothing/head/hooded/winterhood/cmo +- Didn't return an Initialize hint +Path : /obj/item/clothing/suit/hooded/wintercoat/cmo +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/rank/chief_medical_officer/turtleneck +- Didn't return an Initialize hint +Path : /obj/item/clothing/accessory/armband/engine +- Didn't return an Initialize hint +Path : /obj/item/clothing/suit/fire/atmos +- Didn't return an Initialize hint +Path : /obj/item/clothing/head/hardhat/atmos +- Didn't return an Initialize hint +Path : /obj/item/clothing/glasses/meson/engine/tray +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/color/lightpurple +- Didn't return an Initialize hint +Path : /obj/item/clothing/head/helmet/space/hardsuit/engine/atmos +- Didn't return an Initialize hint +Path : /obj/item/clothing/suit/space/hardsuit/engine/atmos +- Didn't return an Initialize hint +Path : /obj/item/clothing/suit/bio_suit/virology +- Didn't return an Initialize hint +Path : /obj/item/clothing/head/bio_hood/virology +- Didn't return an Initialize hint +Path : /obj/structure/closet/secure_closet/freezer/kitchen/maintenance +- Didn't return an Initialize hint +Path : /obj/item/clothing/shoes/winterboots +- Didn't return an Initialize hint +Path : /obj/item/clothing/suit/hooded/wintercoat +- Didn't return an Initialize hint +Path : /obj/item/clothing/head/hooded/winterhood +- Didn't return an Initialize hint +Path : /obj/item/clothing/head/kitty +- Didn't return an Initialize hint +Path : /obj/item/clothing/accessory/maidapron +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/maid +- Didn't return an Initialize hint +Path : /obj/item/clothing/mask/bandana/skull +- Didn't return an Initialize hint +Path : /obj/item/clothing/head/helmet/space/hardsuit/engine/elite +- Didn't return an Initialize hint +Path : /obj/item/clothing/suit/space/hardsuit/engine/elite +- Didn't return an Initialize hint +Path : /obj/item/clothing/shoes/magboots/advance +- Didn't return an Initialize hint +Path : /obj/item/clothing/neck/cloak/ce +- Didn't return an Initialize hint +Path : /obj/item/clothing/head/beret/ce +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/rank/chief_engineer +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/rank/chief_engineer/skirt +- Didn't return an Initialize hint +Path : /obj/item/clothing/head/hardhat/white +- Didn't return an Initialize hint +Path : /obj/item/clothing/glasses/meson/engine +- Didn't return an Initialize hint +Path : /obj/item/clothing/accessory/medal/engineer +- Didn't return an Initialize hint +Path : /obj/item/clothing/head/hooded/winterhood/ce +- Didn't return an Initialize hint +Path : /obj/item/clothing/suit/hooded/wintercoat/ce +- Didn't return an Initialize hint +Path : /obj/item/clothing/head/helmet/space/hardsuit/engine +- Didn't return an Initialize hint +Path : /obj/item/clothing/suit/space/hardsuit/engine +- Didn't return an Initialize hint +Path : /obj/item/clothing/accessory/pocketprotector +- Didn't return an Initialize hint +Path : /obj/item/clothing/head/hooded/winterhood/engineering +- Didn't return an Initialize hint +Path : /obj/item/clothing/suit/hooded/wintercoat/engineering +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/rank/engineer +- Didn't return an Initialize hint +Path : /obj/item/clothing/shoes/workboots +- Didn't return an Initialize hint +Path : /obj/item/clothing/head/hooded/explorer +- Didn't return an Initialize hint +Path : /obj/item/clothing/suit/hooded/explorer/standard +- Didn't return an Initialize hint +Path : /obj/item/clothing/mask/gas/explorer +- Didn't return an Initialize hint +Path : /obj/item/clothing/head/helmet/space/orange +- Didn't return an Initialize hint +Path : /obj/item/clothing/suit/space/orange +- Didn't return an Initialize hint +Path : /obj/item/clothing/head/helmet/roman/legionnaire +- Didn't return an Initialize hint +Path : /obj/item/clothing/mask/cigarette/dromedary +- Didn't return an Initialize hint +Path : /obj/item/clothing/gloves/color/fyellow/old +- Didn't return an Initialize hint +Path : /obj/item/clothing/head/helmet/space/nasavoid/old +- Didn't return an Initialize hint +Path : /obj/item/clothing/suit/space/nasavoid/old +- Didn't return an Initialize hint +Path : /obj/item/clothing/suit/armor/vest/old +- Didn't return an Initialize hint +Path : /obj/item/clothing/head/helmet/old +- Didn't return an Initialize hint +Path : /obj/item/clothing/head/helmet/space/hardsuit/ancient +- Didn't return an Initialize hint +Path : /obj/item/clothing/suit/space/hardsuit/ancient +- Didn't return an Initialize hint +Path : /obj/item/clothing/head/cone +- Didn't return an Initialize hint +Path : /obj/item/clothing/head/papersack/smiley +- Didn't return an Initialize hint +Path : /obj/item/clothing/head/helmet/justice +- Didn't return an Initialize hint +Path : /obj/item/clothing/head/sombrero +- Didn't return an Initialize hint +Path : /obj/structure/closet/secure_closet/freezer/kitchen/mining +- Didn't return an Initialize hint +Path : /obj/item/clothing/head/collectable/kitty +- Didn't return an Initialize hint +Path : /obj/item/clothing/head/rice_hat +- Didn't return an Initialize hint +Path : /obj/item/clothing/shoes/sandal +- Didn't return an Initialize hint +Path : /obj/item/clothing/shoes/combat +- Didn't return an Initialize hint +Path : /obj/item/clothing/head/helmet/space/hardsuit/mining +- Didn't return an Initialize hint +Path : /obj/item/clothing/suit/space/hardsuit/mining +- Didn't return an Initialize hint +Path : /obj/item/clothing/mask/gas/syndicate +- Didn't return an Initialize hint +Path : /obj/item/clothing/head/helmet/space/hardsuit/syndi +- Didn't return an Initialize hint +Path : /obj/item/clothing/suit/space/hardsuit/syndi +- Didn't return an Initialize hint +Path : /obj/item/clothing/suit/space/syndicate/orange +- Didn't return an Initialize hint +Path : /obj/item/clothing/head/helmet/space/syndicate/orange +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/soviet +- Didn't return an Initialize hint +Path : /obj/item/clothing/head/ushanka +- Didn't return an Initialize hint +Path : /obj/item/clothing/glasses/sunglasses/big +- Didn't return an Initialize hint +Path : /obj/item/clothing/under/color/maroon +- Didn't return an Initialize hint +Path : /obj/item/integrated_circuit/passive/power/chemical_cell +- Didn't return an Initialize hint +Path : /obj/item/integrated_circuit/atmospherics/pump/volume +- Didn't return an Initialize hint +Path : /obj/item/integrated_circuit/atmospherics/pump/vent +- Didn't return an Initialize hint +Path : /obj/item/integrated_circuit/atmospherics/pump/filter +- Didn't return an Initialize hint +Path : /obj/item/integrated_circuit/atmospherics/pump/mixer +- Didn't return an Initialize hint +Path : /obj/item/integrated_circuit/atmospherics/pump +- Didn't return an Initialize hint +Path : /obj/item/integrated_circuit/atmospherics/connector +- Didn't return an Initialize hint +Path : /obj/item/integrated_circuit/atmospherics/tank/large +- Didn't return an Initialize hint +Path : /obj/item/integrated_circuit/atmospherics/tank/freezer/heater +- Didn't return an Initialize hint +Path : /obj/item/integrated_circuit/atmospherics/tank/freezer +- Didn't return an Initialize hint +Path : /obj/item/integrated_circuit/atmospherics/tank +- Didn't return an Initialize hint +Path : /obj/item/integrated_circuit/atmospherics/cooler/heater +- Didn't return an Initialize hint +Path : /obj/item/integrated_circuit/atmospherics/cooler +- Didn't return an Initialize hint +Path : /obj/item/integrated_circuit/atmospherics +- Didn't return an Initialize hint +Path : /obj/item/clothing/suit/space/syndicate +- Didn't return an Initialize hint +Path : /obj/item/clothing/head/helmet/space/syndicate +- Didn't return an Initialize hint + diff --git a/data/logs/2019/12/03/round-23.56.34/job_debug.log b/data/logs/2019/12/03/round-23.56.34/job_debug.log new file mode 100644 index 00000000..28f86363 --- /dev/null +++ b/data/logs/2019/12/03/round-23.56.34/job_debug.log @@ -0,0 +1,2 @@ +[2019-12-04 04:56:34.968] Starting up round ID . + - ------------------------- diff --git a/data/logs/2019/12/03/round-23.56.34/manifest.log b/data/logs/2019/12/03/round-23.56.34/manifest.log new file mode 100644 index 00000000..45c55a5a --- /dev/null +++ b/data/logs/2019/12/03/round-23.56.34/manifest.log @@ -0,0 +1,3 @@ +[2019-12-04 04:56:34.965] Starting up round ID . + - ------------------------- +[2019-12-04 04:57:25.868] bigfatanimetiddies \ Alessandra Joghs \ Chief Medical Officer \ NONE \ ROUNDSTART diff --git a/data/logs/2019/12/03/round-23.56.34/newscaster.json b/data/logs/2019/12/03/round-23.56.34/newscaster.json new file mode 100644 index 00000000..e0c60a4b --- /dev/null +++ b/data/logs/2019/12/03/round-23.56.34/newscaster.json @@ -0,0 +1 @@ +{"1":{"channel name":"Station Announcements","author":"SS13","censored":0,"author censored":0,"messages":[{"author":"Central Command","time stamp":"12:23:50","censored":0,"author censored":0,"photo file":"","photo caption":"","body":"Security Report

Thanks to the tireless efforts of our security and intelligence divisions, there are currently no credible threats to Grey Festive Stopover Eighteen. All station construction projects have been authorized. Have a secure shift!","comments":[]},{"author":"Central Command","time stamp":"14:46:28","censored":0,"author censored":0,"photo file":"","photo caption":"","body":"Incoming Classified Message

A report has been downloaded and printed out at all communications consoles.","comments":[]}]}} diff --git a/data/logs/2019/12/03/round-23.56.34/overlay.log b/data/logs/2019/12/03/round-23.56.34/overlay.log new file mode 100644 index 00000000..12063d05 --- /dev/null +++ b/data/logs/2019/12/03/round-23.56.34/overlay.log @@ -0,0 +1,684 @@ +/turf/closed/mineral/random/volcanic => 136ms (29287) (avg:0.004643698688596487) +/turf/open/lava/smooth/lava_land_surface => 38ms (9145) (avg:0.0041552758775651455) +/turf/closed/wall => 26ms (3404) (avg:0.0076380730606615543) +/turf/closed/mineral/iron/volcanic => 23ms (3954) (avg:0.0058168941177427769) +/turf/closed/indestructible/riveted => 19ms (3785) (avg:0.0050198151730000973) +/turf/closed/indestructible/riveted/boss => 14ms (3129) (avg:0.0044742729514837265) +/turf/closed/mineral/random/labormineral/volcanic => 14ms (2334) (avg:0.0059982864186167717) +/turf/open/floor/plasteel => 12ms (3860) (avg:0.0031088083051145077) +/obj/structure/lattice => 10ms (1974) (avg:0.0050658560357987881) +/turf/closed/wall/r_wall => 10ms (1605) (avg:0.006230529397726059) +/turf/open/floor/plasteel/dark => 9ms (2377) (avg:0.0037862851750105619) +/obj/machinery/door/airlock/public/glass => 9ms (239) (avg:0.037656903266906738) +/mob/living/carbon/human => 9ms (99) (avg:0.090909093618392944) +/obj/effect/decal/cleanable/dirt => 7ms (2023) (avg:0.0034602077212184668) +/obj/structure/window/reinforced/fulltile => 7ms (1560) (avg:0.0044871796853840351) +/obj/structure/table/reinforced => 7ms (611) (avg:0.011456628330051899) +/obj/item/stock_parts/cell/emergency_light => 6ms (1057) (avg:0.0056764427572488785) +/turf/closed/mineral/titanium/volcanic => 6ms (452) (avg:0.013274336233735085) +/obj/machinery/light => 5ms (1144) (avg:0.0043706293217837811) +/obj/structure/table => 5ms (639) (avg:0.007824726402759552) +/obj/machinery/door/airlock/maintenance => 5ms (193) (avg:0.02590673603117466) +/turf/closed/mineral/silver/volcanic => 4ms (565) (avg:0.0070796459913253784) +/obj/machinery/clonepod/experimental => 4ms (452) (avg:0.008849557489156723) +/turf/closed/mineral/random/low_chance => 3ms (655) (avg:0.0045801526866853237) +/obj/item/gun/energy/pumpaction/toy => 3ms (452) (avg:0.0066371681168675423) +/obj/structure/lattice/catwalk => 3ms (435) (avg:0.0068965516984462738) +/turf/closed/wall/rust => 3ms (425) (avg:0.0070588234812021255) +/turf/closed/mineral => 3ms (371) (avg:0.0080862529575824738) +/obj/machinery/door/airlock/security/glass => 3ms (52) (avg:0.057692307978868484) +/obj/machinery/door/airlock/virology/glass => 3ms (38) (avg:0.078947365283966064) +/obj/machinery/door/airlock/hatch => 3ms (28) (avg:0.1071428582072258) +/obj/machinery/light/small => 2ms (575) (avg:0.0034782609436661005) +/obj/machinery/clonepod => 2ms (452) (avg:0.0044247787445783615) +/obj/structure/table/wood => 2ms (337) (avg:0.0059347180649638176) +/turf/closed/wall/mineral/titanium => 2ms (324) (avg:0.0061728395521640778) +/turf/open/floor/plasteel/white => 2ms (288) (avg:0.0069444444961845875) +/turf/closed/indestructible => 2ms (168) (avg:0.011904762126505375) +/obj/structure/window/fulltile => 2ms (153) (avg:0.013071895577013493) +/turf/closed/indestructible/riveted/uranium => 2ms (131) (avg:0.015267175622284412) +/turf/open/indestructible/hierophant/two => 2ms (113) (avg:0.017699114978313446) +/obj/structure/table/glass => 2ms (65) (avg:0.030769230797886848) +/obj/item/storage/belt/security/full => 2ms (19) (avg:0.10526315867900848) +/turf/open/floor/plasteel/dark/corner => 2ms (15) (avg:0.13333334028720856) +/turf/closed/mineral/plasma/volcanic => 1ms (997) (avg:0.0010030090343207121) +/turf/open/floor/carpet => 1ms (584) (avg:0.0017123287543654442) +/turf/closed/mineral/gold/volcanic => 1ms (448) (avg:0.0022321429569274187) +/obj/machinery/airalarm => 1ms (336) (avg:0.0029761905316263437) +/obj/machinery/power/solar => 1ms (323) (avg:0.0030959751456975937) +/turf/closed/wall/mineral/iron => 1ms (251) (avg:0.0039840638637542725) +/turf/closed/mineral/random/high_chance/volcanic => 1ms (245) (avg:0.0040816324763000011) +/turf/closed/mineral/uranium/volcanic => 1ms (211) (avg:0.0047393366694450378) +/obj/machinery/door/airlock/external => 1ms (200) (avg:0.004999999888241291) +/turf/closed/wall/mineral/titanium/nodiagonal => 1ms (194) (avg:0.0051546390168368816) +/obj/machinery/atmospherics/pipe/manifold/supply/hidden => 1ms (192) (avg:0.0052083334885537624) +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden => 1ms (156) (avg:0.0064102564938366413) +/turf/open/floor/holofloor => 1ms (156) (avg:0.0064102564938366413) +/obj/machinery/door/airlock => 1ms (138) (avg:0.0072463769465684891) +/turf/closed/wall/mineral/plastitanium => 1ms (118) (avg:0.0084745762869715691) +/obj/machinery/disposal/bin => 1ms (98) (avg:0.010204081423580647) +/turf/closed/indestructible/riveted/hierophant => 1ms (88) (avg:0.011363636702299118) +/obj/machinery/atmospherics/components/binary/passive_gate => 1ms (81) (avg:0.012345679104328156) +/obj/structure/closet => 1ms (70) (avg:0.014285714365541935) +/obj/structure/window/shuttle => 1ms (59) (avg:0.016949152573943138) +/obj/machinery/newscaster/security_unit => 1ms (52) (avg:0.019230769947171211) +/turf/closed/wall/r_wall/rust => 1ms (49) (avg:0.020408162847161293) +/obj/machinery/door/airlock/shuttle => 1ms (44) (avg:0.022727273404598236) +/turf/closed/wall/mineral/cult => 1ms (41) (avg:0.024390242993831635) +/obj/machinery/power/solar/fake => 1ms (36) (avg:0.02777777798473835) +/obj/machinery/door/airlock/engineering => 1ms (34) (avg:0.029411764815449715) +/obj/machinery/power/smes/engineering => 1ms (31) (avg:0.032258063554763794) +/obj/item/gun/energy/laser => 1ms (27) (avg:0.037037037312984467) +/obj/machinery/door/airlock/engineering/glass => 1ms (24) (avg:0.041666667908430099) +/obj/structure/table/wood/fancy => 1ms (21) (avg:0.0476190485060215) +/obj/item/clothing/under/polychromic/shirt => 1ms (18) (avg:0.0555555559694767) +/mob/living/simple_animal/slime => 1ms (18) (avg:0.0555555559694767) +/turf/closed/mineral/uranium => 1ms (12) (avg:0.083333335816860199) +/obj/item/reagent_containers/blood/OMinus => 1ms (10) (avg:0.10000000149011612) +/obj/item/dice/d4 => 1ms (7) (avg:0.1428571492433548) +/obj/machinery/door/airlock/vault => 1ms (4) (avg:0.25) +/obj/structure/door_assembly/door_assembly_mai => 1ms (2) (avg:0.5) +/obj/item/bodypart/r_arm => 1ms (2) (avg:0.5) +/obj/item/bodypart/l_leg => 1ms (2) (avg:0.5) +/mob/living/carbon/monkey/punpun => 1ms (1) (avg:1) +/obj/structure/closet/wardrobe/chemistry_white => 1ms (1) (avg:1) +/obj/machinery/door/airlock/survival_pod/glass => 1ms (1) (avg:1) +/obj/machinery/door/airlock/glass_large => 1ms (1) (avg:1) +/obj/structure/closet/secure_closet/miner/unlocked => 1ms (1) (avg:1) +/turf/open/indestructible/hierophant => 0ms (328) (avg:0) +/obj/machinery/firealarm => 0ms (283) (avg:0) +/turf/closed/mineral/volcanic/lava_land_surface => 0ms (225) (avg:0) +/turf/open/space => 0ms (204) (avg:0) +/turf/open/floor/plating => 0ms (202) (avg:0) +/obj/machinery/newscaster => 0ms (152) (avg:0) +/obj/machinery/door/airlock/centcom => 0ms (147) (avg:0) +/obj/item/stock_parts/cell/upgraded => 0ms (139) (avg:0) +/obj/item/stock_parts/cell/high/empty => 0ms (135) (avg:0) +/turf/closed/mineral/random/high_chance => 0ms (126) (avg:0) +/turf/closed/mineral/random => 0ms (118) (avg:0) +/turf/closed/mineral/gibtonite/volcanic => 0ms (117) (avg:0) +/obj/machinery/power/solar_control => 0ms (104) (avg:0) +/turf/open/floor/engine => 0ms (97) (avg:0) +/obj/item/stock_parts/cell => 0ms (96) (avg:0) +/obj/item/stock_parts/cell/high => 0ms (90) (avg:0) +/turf/closed/indestructible/fakeglass => 0ms (90) (avg:0) +/obj/item/screwdriver => 0ms (87) (avg:0) +/turf/open/floor/carpet/royalblue => 0ms (81) (avg:0) +/obj/item/wirecutters => 0ms (74) (avg:0) +/obj/structure/closet/emcloset => 0ms (66) (avg:0) +/obj/item/paper_bin => 0ms (65) (avg:0) +/turf/closed/mineral/iron => 0ms (65) (avg:0) +/turf/open/floor/plasteel/white/corner => 0ms (63) (avg:0) +/obj/machinery/door/airlock/titanium => 0ms (60) (avg:0) +/obj/item/weldingtool => 0ms (57) (avg:0) +/obj/item/reagent_containers/glass/beaker/large => 0ms (56) (avg:0) +/turf/closed/wall/mineral/titanium/survival/pod => 0ms (56) (avg:0) +/obj/item/reagent_containers/syringe/charcoal => 0ms (55) (avg:0) +/turf/closed/mineral/diamond/volcanic => 0ms (52) (avg:0) +/obj/machinery/door/airlock/highsecurity => 0ms (49) (avg:0) +/turf/open/floor/carpet/black => 0ms (48) (avg:0) +/obj/machinery/door/airlock/maintenance/abandoned => 0ms (47) (avg:0) +/turf/open/floor/plasteel/cafeteria => 0ms (45) (avg:0) +/turf/closed/mineral/bscrystal/volcanic => 0ms (45) (avg:0) +/obj/machinery/door/airlock/command/glass => 0ms (44) (avg:0) +/obj/machinery/atmospherics/pipe/manifold/general/visible => 0ms (41) (avg:0) +/obj/item/reagent_containers/glass/beaker => 0ms (40) (avg:0) +/turf/closed/mineral/ash_rock => 0ms (40) (avg:0) +/obj/item/clipboard => 0ms (38) (avg:0) +/turf/open/floor/plating/airless => 0ms (38) (avg:0) +/turf/open/space/basic => 0ms (38) (avg:0) +/turf/open/floor/mineral/plastitanium/red => 0ms (37) (avg:0) +/obj/item/reagent_containers/glass/beaker/waterbottle/large => 0ms (37) (avg:0) +/obj/machinery/door/airlock/research => 0ms (36) (avg:0) +/obj/structure/window/plasma/reinforced/fulltile => 0ms (36) (avg:0) +/obj/item/storage/toolbox/emergency => 0ms (35) (avg:0) +/obj/item/storage/toolbox/mechanical => 0ms (35) (avg:0) +/obj/machinery/door/airlock/medical/glass => 0ms (35) (avg:0) +/obj/machinery/door/airlock/maintenance_hatch => 0ms (35) (avg:0) +/obj/structure/transit_tube => 0ms (34) (avg:0) +/obj/structure/closet/secure_closet/personal => 0ms (34) (avg:0) +/obj/machinery/door/airlock/mining/glass => 0ms (34) (avg:0) +/obj/machinery/computer/secure_data => 0ms (33) (avg:0) +/obj/machinery/door/airlock/command => 0ms (32) (avg:0) +/turf/closed/mineral/plasma => 0ms (31) (avg:0) +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden => 0ms (30) (avg:0) +/obj/machinery/airalarm/all_access => 0ms (30) (avg:0) +/turf/open/floor/plasteel/airless => 0ms (29) (avg:0) +/obj/machinery/computer => 0ms (28) (avg:0) +/obj/structure/window/paperframe => 0ms (27) (avg:0) +/obj/screen/healthdoll => 0ms (27) (avg:0) +/turf/open/floor/circuit/green/off => 0ms (26) (avg:0) +/obj/item/reagent_containers/glass/bottle/epinephrine => 0ms (25) (avg:0) +/obj/item/stock_parts/cell/upgraded/plus => 0ms (25) (avg:0) +/obj/machinery/power/smes => 0ms (25) (avg:0) +/obj/machinery/door/airlock/security => 0ms (24) (avg:0) +/obj/item/reagent_containers/blood/random => 0ms (23) (avg:0) +/obj/item/reagent_containers/glass/bottle/charcoal => 0ms (22) (avg:0) +/obj/structure/closet/crate/bin => 0ms (21) (avg:0) +/obj/item/disk/plantgene => 0ms (21) (avg:0) +/obj/item/clothing/under/polychromic/shortpants => 0ms (21) (avg:0) +/turf/closed/wall/mineral/wood => 0ms (21) (avg:0) +/obj/machinery/portable_atmospherics/canister/air => 0ms (20) (avg:0) +/obj/machinery/portable_atmospherics/canister/oxygen => 0ms (20) (avg:0) +/obj/item/stock_parts/cell/high/plus => 0ms (20) (avg:0) +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden => 0ms (18) (avg:0) +/obj/machinery/computer/security => 0ms (18) (avg:0) +/obj/item/clothing/under/polychromic/jumpsuit => 0ms (18) (avg:0) +/obj/item/clothing/under/polychromic/kilt => 0ms (18) (avg:0) +/obj/item/clothing/under/polychromic/skirt => 0ms (18) (avg:0) +/obj/item/clothing/under/polychromic/shorts => 0ms (18) (avg:0) +/obj/machinery/door/airlock/science => 0ms (18) (avg:0) +/turf/closed/mineral/silver => 0ms (18) (avg:0) +/obj/structure/closet/cardboard => 0ms (16) (avg:0) +/obj/machinery/airalarm/unlocked => 0ms (16) (avg:0) +/turf/open/floor/plasteel/airless/dark => 0ms (16) (avg:0) +/obj/structure/table/abductor => 0ms (16) (avg:0) +/turf/open/floor/holofloor/carpet => 0ms (16) (avg:0) +/obj/item/storage/toolbox/electrical => 0ms (15) (avg:0) +/obj/machinery/atmospherics/pipe/manifold/cyan/visible => 0ms (15) (avg:0) +/turf/closed/mineral/gold => 0ms (15) (avg:0) +/obj/structure/window/plastitanium => 0ms (15) (avg:0) +/obj/structure/transit_tube/horizontal => 0ms (14) (avg:0) +/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden => 0ms (14) (avg:0) +/obj/item/storage/box/handcuffs => 0ms (14) (avg:0) +/obj/item/storage/box/syringes => 0ms (14) (avg:0) +/obj/machinery/door/airlock/medical => 0ms (14) (avg:0) +/obj/machinery/computer/med_data => 0ms (13) (avg:0) +/obj/item/storage/box/lights/mixed => 0ms (13) (avg:0) +/obj/item/reagent_containers/glass/bottle/morphine => 0ms (13) (avg:0) +/obj/machinery/door/airlock/research/glass => 0ms (13) (avg:0) +/obj/screen/inventory/hand => 0ms (13) (avg:0) +/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible => 0ms (12) (avg:0) +/obj/item/lighter => 0ms (12) (avg:0) +/obj/item/gun/ballistic/automatic/wt550 => 0ms (12) (avg:0) +/obj/machinery/computer/shuttle/mining => 0ms (12) (avg:0) +/turf/open/floor/circuit/red => 0ms (12) (avg:0) +/turf/open/floor/circuit => 0ms (12) (avg:0) +/turf/open/floor/plasteel/showroomfloor => 0ms (12) (avg:0) +/obj/structure/closet/firecloset => 0ms (12) (avg:0) +/turf/open/floor/plasteel/freezer => 0ms (12) (avg:0) +/obj/item/gun/energy/e_gun/turret => 0ms (12) (avg:0) +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers => 0ms (12) (avg:0) +/turf/closed/wall/mineral/titanium/interior => 0ms (12) (avg:0) +/turf/closed/mineral/titanium => 0ms (12) (avg:0) +/turf/closed/indestructible/riveted/boss/see_through => 0ms (12) (avg:0) +/obj/machinery/portable_atmospherics/canister/nitrous_oxide => 0ms (11) (avg:0) +/mob/living/carbon/monkey => 0ms (11) (avg:0) +/obj/machinery/computer/crew => 0ms (11) (avg:0) +/obj/structure/closet/secure_closet/security => 0ms (11) (avg:0) +/obj/machinery/computer/communications => 0ms (11) (avg:0) +/obj/item/gun/energy/e_gun => 0ms (11) (avg:0) +/obj/machinery/computer/station_alert => 0ms (11) (avg:0) +/obj/item/storage/crayons => 0ms (10) (avg:0) +/obj/machinery/computer/cargo => 0ms (10) (avg:0) +/obj/machinery/door/airlock/atmos/abandoned => 0ms (10) (avg:0) +/obj/item/storage/box/rxglasses => 0ms (10) (avg:0) +/obj/item/storage/box/emptysandbags => 0ms (10) (avg:0) +/obj/machinery/door/airlock/atmos => 0ms (10) (avg:0) +/obj/machinery/door/airlock/grunge => 0ms (10) (avg:0) +/obj/machinery/atmospherics/components/unary/vent_scrubber/on => 0ms (10) (avg:0) +/obj/machinery/atmospherics/components/unary/vent_pump/on => 0ms (10) (avg:0) +/obj/item/gun/energy/beam_rifle/debug => 0ms (10) (avg:0) +/obj/item/gps/internal => 0ms (9) (avg:0) +/obj/item/dice/d20 => 0ms (9) (avg:0) +/obj/machinery/computer/mech_bay_power_console => 0ms (9) (avg:0) +/obj/machinery/computer/prisoner => 0ms (9) (avg:0) +/obj/machinery/computer/security/mining => 0ms (9) (avg:0) +/obj/item/storage/box/beakers => 0ms (9) (avg:0) +/obj/item/stack/ore/bluespace_crystal/artificial => 0ms (9) (avg:0) +/turf/open/lava/smooth => 0ms (9) (avg:0) +/obj/machinery/portable_atmospherics/canister/toxins => 0ms (8) (avg:0) +/obj/structure/closet/abductor => 0ms (8) (avg:0) +/obj/machinery/door/airlock/wood => 0ms (8) (avg:0) +/obj/item/storage/box/mousetraps => 0ms (8) (avg:0) +/obj/item/storage/box/flashbangs => 0ms (8) (avg:0) +/obj/machinery/computer/card/centcom => 0ms (8) (avg:0) +/obj/item/reagent_containers/syringe/epinephrine => 0ms (8) (avg:0) +/obj/machinery/computer/shuttle/labor => 0ms (8) (avg:0) +/obj/machinery/computer/atmos_alert => 0ms (8) (avg:0) +/obj/item/storage/box/bodybags => 0ms (8) (avg:0) +/obj/structure/closet/radiation => 0ms (8) (avg:0) +/obj/machinery/door/airlock/external/glass => 0ms (8) (avg:0) +/obj/structure/transit_tube/crossing/horizontal => 0ms (7) (avg:0) +/obj/item/storage/box/drinkingglasses => 0ms (7) (avg:0) +/obj/item/defibrillator/loaded => 0ms (7) (avg:0) +/obj/structure/closet/secure_closet/freezer/meat => 0ms (7) (avg:0) +/obj/structure/closet/secure_closet/freezer/fridge => 0ms (7) (avg:0) +/obj/machinery/computer/operating => 0ms (7) (avg:0) +/obj/item/dice/d6 => 0ms (7) (avg:0) +/obj/item/dice/d10 => 0ms (7) (avg:0) +/obj/structure/closet/secure_closet/brig => 0ms (7) (avg:0) +/obj/structure/closet/toolcloset => 0ms (7) (avg:0) +/obj/machinery/door/airlock/engineering/abandoned => 0ms (7) (avg:0) +/obj/structure/closet/athletic_mixed => 0ms (7) (avg:0) +/obj/item/disk/data => 0ms (7) (avg:0) +/obj/item/stock_parts/cell/emproof => 0ms (7) (avg:0) +/obj/item/gun/energy/kinetic_accelerator => 0ms (7) (avg:0) +/obj/machinery/atmospherics/pipe/manifold/yellow/visible => 0ms (7) (avg:0) +/turf/closed/mineral/diamond => 0ms (7) (avg:0) +/obj/item/storage/box/matches => 0ms (6) (avg:0) +/obj/structure/closet/secure_closet/freezer/kitchen => 0ms (6) (avg:0) +/obj/item/storage/box/ids => 0ms (6) (avg:0) +/obj/structure/closet/syndicate/personal => 0ms (6) (avg:0) +/obj/item/dice/d8 => 0ms (6) (avg:0) +/obj/item/dice/d12 => 0ms (6) (avg:0) +/obj/machinery/computer/cryopod => 0ms (6) (avg:0) +/obj/structure/closet/secure_closet/security/sec => 0ms (6) (avg:0) +/obj/structure/closet/wardrobe/mixed => 0ms (6) (avg:0) +/obj/item/storage/box/pillbottles => 0ms (6) (avg:0) +/obj/item/storage/box/medsprays => 0ms (6) (avg:0) +/obj/item/reagent_containers/glass/bottle/toxin => 0ms (6) (avg:0) +/obj/machinery/computer/monitor => 0ms (6) (avg:0) +/obj/machinery/computer/card => 0ms (6) (avg:0) +/obj/structure/closet/l3closet/scientist => 0ms (6) (avg:0) +/obj/structure/tank_dispenser/oxygen => 0ms (6) (avg:0) +/obj/machinery/computer/bounty => 0ms (6) (avg:0) +/obj/machinery/computer/teleporter => 0ms (6) (avg:0) +/obj/structure/closet/secure_closet/miner => 0ms (6) (avg:0) +/obj/machinery/door/airlock/virology => 0ms (6) (avg:0) +/obj/item/reagent_containers/syringe/antiviral => 0ms (6) (avg:0) +/obj/machinery/atmospherics/components/unary/outlet_injector/on => 0ms (6) (avg:0) +/obj/machinery/portable_atmospherics/canister/carbon_dioxide => 0ms (5) (avg:0) +/obj/machinery/portable_atmospherics/canister/nitrogen => 0ms (5) (avg:0) +/obj/structure/transit_tube/station/reverse/flipped => 0ms (5) (avg:0) +/obj/item/clothing/head/helmet/space/plasmaman => 0ms (5) (avg:0) +/obj/machinery/gibber => 0ms (5) (avg:0) +/obj/machinery/computer/telecrystals/uplinker => 0ms (5) (avg:0) +/obj/item/paicard => 0ms (5) (avg:0) +/obj/machinery/computer/med_data/laptop => 0ms (5) (avg:0) +/obj/item/gps/mining => 0ms (5) (avg:0) +/obj/item/storage/toolbox/drone => 0ms (5) (avg:0) +/obj/item/reagent_containers/syringe/lethal/execution => 0ms (5) (avg:0) +/obj/structure/closet/secure_closet/medical1 => 0ms (5) (avg:0) +/obj/item/pda => 0ms (5) (avg:0) +/obj/item/storage/box => 0ms (5) (avg:0) +/obj/structure/closet/secure_closet/personal/patient => 0ms (5) (avg:0) +/obj/structure/closet/l3closet => 0ms (5) (avg:0) +/obj/machinery/atmospherics/pipe/manifold/supply/visible => 0ms (5) (avg:0) +/obj/machinery/atmospherics/components/trinary/filter/flipped/critical => 0ms (5) (avg:0) +/obj/structure/table/wood/poker => 0ms (5) (avg:0) +/turf/open/floor/mineral/plastitanium => 0ms (5) (avg:0) +/obj/screen/movable/action_button => 0ms (5) (avg:0) +/obj/screen/inventory => 0ms (5) (avg:0) +/obj/item/storage/box/alienhandcuffs => 0ms (4) (avg:0) +/obj/machinery/computer/camera_advanced/abductor => 0ms (4) (avg:0) +/obj/machinery/door/airlock/silver => 0ms (4) (avg:0) +/obj/item/storage/box/silver_ids => 0ms (4) (avg:0) +/obj/item/storage/box/teargas => 0ms (4) (avg:0) +/obj/item/storage/box/zipties => 0ms (4) (avg:0) +/obj/machinery/computer/emergency_shuttle => 0ms (4) (avg:0) +/obj/machinery/computer/auxillary_base => 0ms (4) (avg:0) +/obj/machinery/power/smes/magical => 0ms (4) (avg:0) +/obj/machinery/modular_computer/console/preset/command => 0ms (4) (avg:0) +/obj/item/gun/energy/laser/practice => 0ms (4) (avg:0) +/obj/structure/closet/wardrobe/white => 0ms (4) (avg:0) +/obj/structure/closet/wardrobe/pjs => 0ms (4) (avg:0) +/obj/machinery/modular_computer/console/preset/engineering => 0ms (4) (avg:0) +/obj/machinery/computer/cargo/request => 0ms (4) (avg:0) +/obj/structure/closet/wardrobe/black => 0ms (4) (avg:0) +/obj/machinery/computer/rdconsole/core => 0ms (4) (avg:0) +/obj/machinery/computer/scan_consolenew => 0ms (4) (avg:0) +/obj/item/reagent_containers/glass/beaker/cryoxadone => 0ms (4) (avg:0) +/obj/machinery/atmospherics/components/unary/cryo_cell => 0ms (4) (avg:0) +/obj/machinery/door/airlock/mining => 0ms (4) (avg:0) +/turf/open/floor/plasteel/checker => 0ms (4) (avg:0) +/obj/machinery/computer/atmos_control => 0ms (4) (avg:0) +/obj/machinery/computer/camera_advanced/xenobio => 0ms (4) (avg:0) +/obj/machinery/door/airlock/atmos/glass => 0ms (4) (avg:0) +/obj/item/weldingtool/largetank => 0ms (4) (avg:0) +/obj/machinery/computer/atmos_control/tank => 0ms (4) (avg:0) +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos => 0ms (4) (avg:0) +/obj/item/gps/internal/dragon => 0ms (4) (avg:0) +/obj/machinery/atmospherics/pipe/manifold/green/visible => 0ms (4) (avg:0) +/turf/closed/wall/mineral/plastitanium/nodiagonal => 0ms (4) (avg:0) +/obj/screen/movable/action_button/hide_toggle => 0ms (3) (avg:0) +/obj/structure/transit_tube/station/reverse => 0ms (3) (avg:0) +/obj/machinery/computer/shuttle => 0ms (3) (avg:0) +/obj/item/reagent_containers/blood/AMinus => 0ms (3) (avg:0) +/obj/item/reagent_containers/blood/BMinus => 0ms (3) (avg:0) +/obj/item/reagent_containers/blood/BPlus => 0ms (3) (avg:0) +/obj/item/reagent_containers/blood/OPlus => 0ms (3) (avg:0) +/obj/item/reagent_containers/blood/lizard => 0ms (3) (avg:0) +/obj/structure/closet/secure_closet/hydroponics => 0ms (3) (avg:0) +/obj/item/storage/box/disks_plantgene => 0ms (3) (avg:0) +/obj/item/stock_parts/cell/infinite => 0ms (3) (avg:0) +/obj/item/storage/box/emps => 0ms (3) (avg:0) +/obj/item/gun/energy/ionrifle => 0ms (3) (avg:0) +/obj/machinery/modular_computer/console/preset/research => 0ms (3) (avg:0) +/obj/item/gps/internal/base => 0ms (3) (avg:0) +/obj/structure/closet/secure_closet/personal/cabinet => 0ms (3) (avg:0) +/obj/machinery/computer/arcade/orion_trail/kobayashi => 0ms (3) (avg:0) +/obj/item/storage/box/firingpins => 0ms (3) (avg:0) +/obj/item/gun/energy/e_gun/advtaser => 0ms (3) (avg:0) +/obj/item/gun/energy/laser/bluetag => 0ms (3) (avg:0) +/obj/item/gun/energy/laser/redtag => 0ms (3) (avg:0) +/obj/structure/closet/secure_closet/chemical => 0ms (3) (avg:0) +/obj/item/storage/toolbox/artistic => 0ms (3) (avg:0) +/obj/structure/closet/wardrobe/grey => 0ms (3) (avg:0) +/obj/item/clothing/neck/petcollar => 0ms (3) (avg:0) +/obj/structure/closet/bombcloset => 0ms (3) (avg:0) +/obj/structure/tank_dispenser => 0ms (3) (avg:0) +/obj/item/reagent_containers/glass/bottle/mutagen => 0ms (3) (avg:0) +/obj/item/twohanded/rcl/pre_loaded => 0ms (3) (avg:0) +/obj/structure/closet/secure_closet/engineering_personal => 0ms (3) (avg:0) +/obj/item/storage/toolbox/syndicate => 0ms (3) (avg:0) +/obj/structure/closet/cabinet => 0ms (3) (avg:0) +/obj/item/storage/box/ingredients/wildcard => 0ms (3) (avg:0) +/obj/machinery/atmospherics/components/trinary/filter => 0ms (3) (avg:0) +/obj/structure/table/wood/bar => 0ms (3) (avg:0) +/obj/structure/window/reinforced/tinted/fulltile => 0ms (3) (avg:0) +/turf/closed/mineral/bscrystal => 0ms (3) (avg:0) +/obj/screen/parallax_layer/layer_1 => 0ms (2) (avg:0) +/obj/screen/parallax_layer/layer_2 => 0ms (2) (avg:0) +/obj/structure/closet/crate/secure/loot => 0ms (2) (avg:0) +/obj/machinery/atmospherics/components/trinary/filter/atmos/n2 => 0ms (2) (avg:0) +/obj/machinery/atmospherics/miner/nitrogen => 0ms (2) (avg:0) +/obj/machinery/atmospherics/components/trinary/filter/atmos/o2 => 0ms (2) (avg:0) +/obj/machinery/atmospherics/miner/oxygen => 0ms (2) (avg:0) +/obj/structure/closet/chefcloset => 0ms (2) (avg:0) +/obj/structure/closet/secure_closet/ertMed => 0ms (2) (avg:0) +/obj/item/defibrillator/compact/combat/loaded => 0ms (2) (avg:0) +/obj/structure/closet/secure_closet/ertSec => 0ms (2) (avg:0) +/obj/item/storage/box/flashes => 0ms (2) (avg:0) +/obj/structure/closet/secure_closet/ertEngi => 0ms (2) (avg:0) +/obj/item/storage/box/metalfoam => 0ms (2) (avg:0) +/obj/machinery/computer/camera_advanced => 0ms (2) (avg:0) +/obj/machinery/computer/shuttle/ferry => 0ms (2) (avg:0) +/obj/item/dice/d1 => 0ms (2) (avg:0) +/obj/machinery/computer/monitor/secret => 0ms (2) (avg:0) +/obj/machinery/computer/shuttle/white_ship => 0ms (2) (avg:0) +/obj/structure/closet/wardrobe/cargotech => 0ms (2) (avg:0) +/obj/structure/closet/secure_closet/quartermaster => 0ms (2) (avg:0) +/obj/structure/closet/secure_closet/courtroom => 0ms (2) (avg:0) +/obj/machinery/computer/security/hos => 0ms (2) (avg:0) +/obj/machinery/computer/card/minor/hos => 0ms (2) (avg:0) +/obj/item/gun/energy/e_gun/dragnet => 0ms (2) (avg:0) +/obj/item/storage/box/hug => 0ms (2) (avg:0) +/obj/machinery/computer/gulag_teleporter_computer => 0ms (2) (avg:0) +/obj/machinery/computer/security/labor => 0ms (2) (avg:0) +/obj/item/storage/box/prisoner => 0ms (2) (avg:0) +/obj/machinery/computer/camera_advanced/base_construction => 0ms (2) (avg:0) +/obj/item/storage/box/cups => 0ms (2) (avg:0) +/obj/machinery/computer/holodeck => 0ms (2) (avg:0) +/obj/machinery/computer/bank_machine => 0ms (2) (avg:0) +/turf/open/floor/wood => 0ms (2) (avg:0) +/obj/structure/closet/secure_closet/freezer/cream_pie => 0ms (2) (avg:0) +/obj/structure/closet/wardrobe/green => 0ms (2) (avg:0) +/obj/structure/fireaxecabinet => 0ms (2) (avg:0) +/obj/item/storage/box/evidence => 0ms (2) (avg:0) +/obj/machinery/computer/upload/ai => 0ms (2) (avg:0) +/obj/machinery/computer/upload/borg => 0ms (2) (avg:0) +/obj/machinery/computer/rdconsole/robotics => 0ms (2) (avg:0) +/obj/item/storage/box/masks => 0ms (2) (avg:0) +/obj/item/storage/box/gloves => 0ms (2) (avg:0) +/obj/machinery/computer/aifixer => 0ms (2) (avg:0) +/obj/machinery/computer/rdconsole/experiment => 0ms (2) (avg:0) +/obj/machinery/computer/robotics => 0ms (2) (avg:0) +/obj/machinery/computer/cloning => 0ms (2) (avg:0) +/obj/machinery/computer/mecha => 0ms (2) (avg:0) +/obj/machinery/airalarm/server => 0ms (2) (avg:0) +/obj/machinery/computer/security/qm => 0ms (2) (avg:0) +/obj/machinery/computer/rdservercontrol => 0ms (2) (avg:0) +/obj/machinery/computer/card/minor/rd => 0ms (2) (avg:0) +/obj/structure/closet/secure_closet/medical3 => 0ms (2) (avg:0) +/obj/structure/closet/l3closet/janitor => 0ms (2) (avg:0) +/obj/structure/closet/secure_closet/medical2 => 0ms (2) (avg:0) +/obj/machinery/computer/card/minor/cmo => 0ms (2) (avg:0) +/obj/machinery/door/airlock/research/glass/incinerator/toxmix_exterior => 0ms (2) (avg:0) +/obj/machinery/door/airlock/research/glass/incinerator/toxmix_interior => 0ms (2) (avg:0) +/obj/machinery/computer/atmos_control/tank/mix_tank => 0ms (2) (avg:0) +/obj/machinery/computer/atmos_control/tank/nitrous_tank => 0ms (2) (avg:0) +/obj/machinery/announcement_system => 0ms (2) (avg:0) +/obj/machinery/computer/message_monitor => 0ms (2) (avg:0) +/obj/structure/closet/secure_closet/atmospherics => 0ms (2) (avg:0) +/obj/machinery/computer/telecomms/server => 0ms (2) (avg:0) +/obj/machinery/computer/atmos_control/tank/toxin_tank => 0ms (2) (avg:0) +/obj/machinery/computer/atmos_control/tank/carbon_tank => 0ms (2) (avg:0) +/obj/machinery/computer/telecomms/monitor => 0ms (2) (avg:0) +/obj/machinery/computer/atmos_control/tank/nitrogen_tank => 0ms (2) (avg:0) +/obj/machinery/computer/atmos_control/tank/oxygen_tank => 0ms (2) (avg:0) +/obj/machinery/computer/atmos_control/tank/air_tank => 0ms (2) (avg:0) +/obj/machinery/computer/apc_control => 0ms (2) (avg:0) +/obj/structure/closet/firecloset/full => 0ms (2) (avg:0) +/obj/machinery/computer/card/minor/ce => 0ms (2) (avg:0) +/obj/machinery/computer/turbine_computer => 0ms (2) (avg:0) +/obj/machinery/door/airlock/public/glass/incinerator/atmos_interior => 0ms (2) (avg:0) +/obj/machinery/door/airlock/public/glass/incinerator/atmos_exterior => 0ms (2) (avg:0) +/obj/machinery/computer/rdconsole/production => 0ms (2) (avg:0) +/obj/machinery/door/airlock/abandoned => 0ms (2) (avg:0) +/obj/machinery/door/airlock/engineering/glass/critical => 0ms (2) (avg:0) +/obj/structure/closet/emcloset/anchored => 0ms (2) (avg:0) +/obj/structure/reflector/box/anchored => 0ms (2) (avg:0) +/obj/structure/reflector/single/anchored => 0ms (2) (avg:0) +/obj/machinery/computer/shuttle/labor/one_way => 0ms (2) (avg:0) +/obj/machinery/door/airlock/glass => 0ms (2) (avg:0) +/obj/machinery/atmospherics/components/unary/vent_pump => 0ms (2) (avg:0) +/obj/item/defibrillator => 0ms (2) (avg:0) +/obj/item/gun/energy/laser/retro/old => 0ms (2) (avg:0) +/obj/machinery/door/airlock/freezer => 0ms (2) (avg:0) +/obj/item/gps => 0ms (2) (avg:0) +/obj/item/storage/box/survival => 0ms (2) (avg:0) +/obj/machinery/atmospherics/components/unary/outlet_injector/atmos => 0ms (2) (avg:0) +/obj/machinery/atmospherics/pipe/manifold => 0ms (2) (avg:0) +/obj/machinery/atmospherics/pipe/manifold4w/general => 0ms (2) (avg:0) +/obj/machinery/atmospherics/pipe/manifold4w => 0ms (2) (avg:0) +/turf/closed/wall/mineral/titanium/survival/nodiagonal => 0ms (2) (avg:0) +/obj/item/pda/heads/cmo => 0ms (2) (avg:0) +/mob/living/carbon/human/dummy => 0ms (2) (avg:0) +/obj/item/storage/box/stockparts/deluxe => 0ms (2) (avg:0) +/obj/item/bodypart/l_arm => 0ms (2) (avg:0) +/obj/item/bodypart/r_leg => 0ms (2) (avg:0) +/mob/dead/observer => 0ms (2) (avg:0) +/obj/structure/closet/crate/secure/gear => 0ms (1) (avg:0) +/obj/machinery/portable_atmospherics/canister/water_vapor => 0ms (1) (avg:0) +/obj/machinery/portable_atmospherics/canister/bz => 0ms (1) (avg:0) +/obj/structure/transit_tube/curved/flipped => 0ms (1) (avg:0) +/obj/structure/transit_tube/curved => 0ms (1) (avg:0) +/obj/structure/closet/crate/critter => 0ms (1) (avg:0) +/obj/structure/closet/crate/secure/engineering => 0ms (1) (avg:0) +/obj/structure/closet/crate/secure/weapon => 0ms (1) (avg:0) +/obj/machinery/atmospherics/components/trinary/mixer/airmix/inverse => 0ms (1) (avg:0) +/obj/machinery/atmospherics/pipe/manifold4w/supplymain/hidden => 0ms (1) (avg:0) +/obj/structure/door_assembly/door_assembly_mhatch => 0ms (1) (avg:0) +/obj/structure/door_assembly/door_assembly_public => 0ms (1) (avg:0) +/obj/item/gps/internal/legion => 0ms (1) (avg:0) +/obj/item/gps/internal/hierophant => 0ms (1) (avg:0) +/obj/item/dice => 0ms (1) (avg:0) +/obj/structure/closet/cardboard/metal => 0ms (1) (avg:0) +/obj/machinery/computer/telecrystals/boss => 0ms (1) (avg:0) +/obj/machinery/shuttle_manipulator => 0ms (1) (avg:0) +/obj/structure/closet/secure_closet/ertCom => 0ms (1) (avg:0) +/obj/item/gun/ballistic/automatic/pistol/deagle => 0ms (1) (avg:0) +/obj/machinery/computer/shuttle/syndicate/recall => 0ms (1) (avg:0) +/obj/item/stock_parts/cell/pulse/carbine => 0ms (1) (avg:0) +/obj/item/gun/energy/pulse/carbine/loyalpin => 0ms (1) (avg:0) +/obj/item/gun/ballistic/automatic/ar => 0ms (1) (avg:0) +/obj/structure/closet/secure_closet/contraband/heads => 0ms (1) (avg:0) +/obj/structure/closet/lawcloset => 0ms (1) (avg:0) +/obj/item/gun/energy/e_gun/mini/practice_phaser => 0ms (1) (avg:0) +/obj/screen/parallax_layer/layer_3 => 0ms (1) (avg:0) +/obj/item/dice/d2 => 0ms (1) (avg:0) +/obj/item/storage/box/seccarts => 0ms (1) (avg:0) +/obj/item/storage/box/deputy => 0ms (1) (avg:0) +/obj/structure/closet/bombcloset/security => 0ms (1) (avg:0) +/obj/item/storage/box/chemimp => 0ms (1) (avg:0) +/obj/item/storage/box/trackimp => 0ms (1) (avg:0) +/obj/item/gun/energy/temperature/security => 0ms (1) (avg:0) +/obj/structure/closet/secure_closet/lethalshots => 0ms (1) (avg:0) +/obj/structure/closet/l3closet/security => 0ms (1) (avg:0) +/obj/structure/closet/secure_closet/hos => 0ms (1) (avg:0) +/obj/item/gun/energy/e_gun/hos => 0ms (1) (avg:0) +/obj/structure/closet/secure_closet/contraband/armory => 0ms (1) (avg:0) +/obj/structure/closet/secure_closet/injection => 0ms (1) (avg:0) +/obj/structure/closet/secure_closet/warden => 0ms (1) (avg:0) +/obj/item/construction/rcd/internal => 0ms (1) (avg:0) +/obj/item/stock_parts/cell/potato => 0ms (1) (avg:0) +/obj/structure/closet/boxinggloves => 0ms (1) (avg:0) +/obj/structure/closet/masks => 0ms (1) (avg:0) +/obj/structure/closet/lasertag/blue => 0ms (1) (avg:0) +/obj/structure/closet/lasertag/red => 0ms (1) (avg:0) +/obj/item/construction/rcd => 0ms (1) (avg:0) +/obj/item/folder/documents => 0ms (1) (avg:0) +/obj/structure/closet/secure_closet/bar => 0ms (1) (avg:0) +/obj/item/reagent_containers/glass/bottle/nutrient/ez => 0ms (1) (avg:0) +/obj/item/reagent_containers/glass/bottle/nutrient/rh => 0ms (1) (avg:0) +/obj/structure/closet/secure_closet/exile => 0ms (1) (avg:0) +/obj/item/lighter/greyscale => 0ms (1) (avg:0) +/obj/item/storage/box/PDAs => 0ms (1) (avg:0) +/obj/structure/closet/secure_closet/detective => 0ms (1) (avg:0) +/obj/item/gun/energy/laser/captain => 0ms (1) (avg:0) +/obj/machinery/gravity_generator/part => 0ms (1) (avg:0) +/obj/structure/closet/secure_closet/security/med => 0ms (1) (avg:0) +/obj/item/reagent_containers/glass/beaker/sulphuric => 0ms (1) (avg:0) +/obj/structure/closet/secure_closet/captains => 0ms (1) (avg:0) +/obj/item/storage/belt/sabre => 0ms (1) (avg:0) +/obj/item/storage/box/disks => 0ms (1) (avg:0) +/obj/structure/closet/secure_closet/hop => 0ms (1) (avg:0) +/obj/structure/closet/secure_closet/security/science => 0ms (1) (avg:0) +/obj/structure/closet/secure_closet/security/cargo => 0ms (1) (avg:0) +/obj/structure/closet/secure_closet/RD => 0ms (1) (avg:0) +/obj/structure/closet/wardrobe/miner => 0ms (1) (avg:0) +/obj/item/reagent_containers/glass/beaker/synthflesh => 0ms (1) (avg:0) +/obj/item/reagent_containers/blood/APlus => 0ms (1) (avg:0) +/obj/structure/closet/secure_closet/CMO => 0ms (1) (avg:0) +/obj/item/defibrillator/compact/loaded => 0ms (1) (avg:0) +/obj/item/organ/cyberimp/eyes/hud/medical => 0ms (1) (avg:0) +/obj/item/reagent_containers/glass/bottle/vial/large/preloaded/CMO => 0ms (1) (avg:0) +/obj/item/reagent_containers/glass/bottle/vial/large/preloaded/tricord => 0ms (1) (avg:0) +/obj/item/reagent_containers/glass/bottle/vial/large/preloaded/charcoal => 0ms (1) (avg:0) +/obj/item/reagent_containers/glass/bottle/vial/large/preloaded/salglu => 0ms (1) (avg:0) +/obj/item/reagent_containers/glass/bottle/vial/large/preloaded/dexalin => 0ms (1) (avg:0) +/obj/item/reagent_containers/glass/bottle/vial/large/preloaded/synthflesh => 0ms (1) (avg:0) +/obj/item/stack/ore/silver => 0ms (1) (avg:0) +/obj/item/reagent_containers/glass/bottle/cold => 0ms (1) (avg:0) +/obj/item/reagent_containers/glass/bottle/flu_virion => 0ms (1) (avg:0) +/obj/item/reagent_containers/glass/bottle/plasma => 0ms (1) (avg:0) +/obj/item/reagent_containers/glass/bottle/synaptizine => 0ms (1) (avg:0) +/obj/item/reagent_containers/glass/bottle/formaldehyde => 0ms (1) (avg:0) +/obj/structure/closet/secure_closet/security/engine => 0ms (1) (avg:0) +/obj/structure/closet/l3closet/virology => 0ms (1) (avg:0) +/turf/open/floor/plasteel/dark/telecomms => 0ms (1) (avg:0) +/obj/structure/closet/secure_closet/freezer/kitchen/maintenance => 0ms (1) (avg:0) +/obj/item/clothing/under/maid => 0ms (1) (avg:0) +/obj/structure/closet/secure_closet/engineering_chief => 0ms (1) (avg:0) +/obj/structure/closet/secure_closet/engineering_electrical => 0ms (1) (avg:0) +/obj/structure/closet/secure_closet/engineering_welding => 0ms (1) (avg:0) +/obj/machinery/airalarm/engine => 0ms (1) (avg:0) +/obj/structure/closet/wardrobe/engineering_yellow => 0ms (1) (avg:0) +/obj/structure/reflector/double/anchored => 0ms (1) (avg:0) +/obj/structure/necropolis_gate/locked => 0ms (1) (avg:0) +/obj/structure/necropolis_gate/legion_gate => 0ms (1) (avg:0) +/obj/structure/necropolis_arch => 0ms (1) (avg:0) +/obj/item/construction/rcd/loaded => 0ms (1) (avg:0) +/obj/structure/necropolis_gate => 0ms (1) (avg:0) +/obj/item/reagent_containers/glass/bottle/aluminium => 0ms (1) (avg:0) +/obj/item/reagent_containers/glass/bottle/bromine => 0ms (1) (avg:0) +/obj/item/reagent_containers/glass/bottle/sugar => 0ms (1) (avg:0) +/obj/item/reagent_containers/glass/bottle/sulfur => 0ms (1) (avg:0) +/obj/item/reagent_containers/glass/bottle/carbon => 0ms (1) (avg:0) +/obj/item/reagent_containers/glass/bottle/chlorine => 0ms (1) (avg:0) +/obj/item/reagent_containers/glass/bottle/mercury => 0ms (1) (avg:0) +/obj/item/reagent_containers/glass/bottle/nitrogen => 0ms (1) (avg:0) +/obj/item/reagent_containers/glass/bottle/oxygen => 0ms (1) (avg:0) +/obj/item/reagent_containers/glass/bottle/phosphorus => 0ms (1) (avg:0) +/obj/item/reagent_containers/glass/bottle/silver => 0ms (1) (avg:0) +/obj/item/reagent_containers/glass/bottle/sodium => 0ms (1) (avg:0) +/obj/item/reagent_containers/glass/bottle/copper => 0ms (1) (avg:0) +/obj/item/reagent_containers/glass/bottle/ethanol => 0ms (1) (avg:0) +/obj/item/reagent_containers/glass/bottle/fluorine => 0ms (1) (avg:0) +/obj/item/reagent_containers/glass/bottle/hydrogen => 0ms (1) (avg:0) +/obj/item/reagent_containers/glass/bottle/water => 0ms (1) (avg:0) +/obj/item/reagent_containers/glass/bottle/iodine => 0ms (1) (avg:0) +/obj/item/reagent_containers/glass/bottle/iron => 0ms (1) (avg:0) +/obj/item/reagent_containers/glass/bottle/lithium => 0ms (1) (avg:0) +/obj/item/reagent_containers/glass/bottle/potassium => 0ms (1) (avg:0) +/obj/item/reagent_containers/glass/bottle/radium => 0ms (1) (avg:0) +/obj/item/reagent_containers/glass/bottle/welding_fuel => 0ms (1) (avg:0) +/obj/item/reagent_containers/glass/bottle/sacid => 0ms (1) (avg:0) +/obj/item/reagent_containers/glass/bottle/silicon => 0ms (1) (avg:0) +/obj/item/gun/energy/e_gun/old => 0ms (1) (avg:0) +/obj/item/stack/ore/bluespace_crystal => 0ms (1) (avg:0) +/obj/item/gun/energy/laser/scatter/shotty => 0ms (1) (avg:0) +/obj/structure/closet/secure_closet/freezer/kitchen/mining => 0ms (1) (avg:0) +/obj/item/reagent_containers/syringe/lethal/choral => 0ms (1) (avg:0) +/obj/item/reagent_containers/glass/bottle/chloralhydrate => 0ms (1) (avg:0) +/obj/item/reagent_containers/glass/bottle/facid => 0ms (1) (avg:0) +/obj/item/storage/box/medipens => 0ms (1) (avg:0) +/obj/machinery/power/generator => 0ms (1) (avg:0) +/obj/item/folder/syndicate/mining => 0ms (1) (avg:0) +/obj/machinery/computer/prototype_cloning => 0ms (1) (avg:0) +/obj/item/stock_parts/cell/pumpaction => 0ms (1) (avg:0) +/area/space => 0ms (1) (avg:0) +/area/awaymission/errorroom => 0ms (1) (avg:0) +/area/abductor_ship => 0ms (1) (avg:0) +/area/fabric_of_reality => 0ms (1) (avg:0) +/area/ai_multicam_room => 0ms (1) (avg:0) +/area/tdome/arena => 0ms (1) (avg:0) +/area/centcom/supplypod => 0ms (1) (avg:0) +/area/centcom/supplypod/podStorage => 0ms (1) (avg:0) +/area/centcom/supplypod/loading/three => 0ms (1) (avg:0) +/area/centcom/supplypod/loading/four => 0ms (1) (avg:0) +/area/centcom/supplypod/loading/one => 0ms (1) (avg:0) +/area/centcom/supplypod/loading/two => 0ms (1) (avg:0) +/area/syndicate_mothership => 0ms (1) (avg:0) +/area/ctf => 0ms (1) (avg:0) +/area/start => 0ms (1) (avg:0) +/area/tdome/arena_source => 0ms (1) (avg:0) +/area/holodeck/rec_center/refuel => 0ms (1) (avg:0) +/area/holodeck/rec_center/spacechess => 0ms (1) (avg:0) +/area/holodeck/rec_center/thunderdome1218 => 0ms (1) (avg:0) +/area/holodeck/rec_center/kobayashi => 0ms (1) (avg:0) +/area/holodeck/rec_center/chapelcourt => 0ms (1) (avg:0) +/area/holodeck/rec_center/school => 0ms (1) (avg:0) +/area/holodeck/rec_center/firingrange => 0ms (1) (avg:0) +/area/holodeck/rec_center/anthophila => 0ms (1) (avg:0) +/area/holodeck/rec_center/pet_lounge => 0ms (1) (avg:0) +/area/holodeck/rec_center/medical => 0ms (1) (avg:0) +/area/holodeck/rec_center/basketball => 0ms (1) (avg:0) +/area/holodeck/rec_center/beach => 0ms (1) (avg:0) +/area/holodeck/rec_center/thunderdome => 0ms (1) (avg:0) +/area/holodeck/rec_center/dodgeball => 0ms (1) (avg:0) +/area/holodeck/rec_center/winterwonderland => 0ms (1) (avg:0) +/area/holodeck/rec_center/bunker => 0ms (1) (avg:0) +/area/holodeck/rec_center/lounge => 0ms (1) (avg:0) +/area/holodeck/rec_center/wildlife => 0ms (1) (avg:0) +/area/holodeck/rec_center/offline => 0ms (1) (avg:0) +/area/holodeck/rec_center/burn => 0ms (1) (avg:0) +/area/holodeck/rec_center/court => 0ms (1) (avg:0) +/area/space/nearstation => 0ms (1) (avg:0) +/area/solar/port/fore => 0ms (1) (avg:0) +/area/solar/starboard/fore => 0ms (1) (avg:0) +/area/holodeck/rec_center => 0ms (1) (avg:0) +/area/solar/port/aft => 0ms (1) (avg:0) +/area/solar/starboard/aft => 0ms (1) (avg:0) +/obj/item/gps/internal/bubblegum => 0ms (1) (avg:0) +/obj/item/paper/monitorkey => 0ms (1) (avg:0) +/obj/machinery/atmospherics/components/trinary/mixer => 0ms (1) (avg:0) +/obj/machinery/atmospherics/components/trinary/mixer/flipped => 0ms (1) (avg:0) +/obj/machinery/atmospherics/components/trinary/filter/atmos/n2o => 0ms (1) (avg:0) +/obj/machinery/atmospherics/components/trinary/filter/atmos/plasma => 0ms (1) (avg:0) +/obj/machinery/atmospherics/components/trinary/mixer/airmix => 0ms (1) (avg:0) +/obj/machinery/atmospherics/components/trinary/filter/atmos/co2 => 0ms (1) (avg:0) +/obj/machinery/atmospherics/pipe/manifold/cyan/hidden => 0ms (1) (avg:0) +/obj/machinery/atmospherics/pipe/manifold/general/hidden => 0ms (1) (avg:0) +/obj/machinery/atmospherics/pipe/manifold/orange/visible => 0ms (1) (avg:0) +/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/engine_waste => 0ms (1) (avg:0) +/obj/structure/falsewall => 0ms (1) (avg:0) +/turf/closed/mineral/gibtonite => 0ms (1) (avg:0) +/obj/machinery/computer/shuttle/syndicate/drop_pod => 0ms (1) (avg:0) +/obj/structure/closet/syndicate/nuclear => 0ms (1) (avg:0) +/obj/item/pda/syndicate => 0ms (1) (avg:0) +/obj/machinery/computer/med_data/syndie => 0ms (1) (avg:0) +/obj/machinery/computer/crew/syndie => 0ms (1) (avg:0) +/obj/machinery/computer/camera_advanced/shuttle_docker/syndicate => 0ms (1) (avg:0) +/obj/machinery/computer/shuttle/syndicate => 0ms (1) (avg:0) +/obj/machinery/computer/camera_advanced/syndie => 0ms (1) (avg:0) +/obj/machinery/computer/secure_data/syndie => 0ms (1) (avg:0) +/obj/machinery/computer/shuttle/ferry/request => 0ms (1) (avg:0) +/obj/screen/zone_sel => 0ms (1) (avg:0) +/area/shuttle/transit => 0ms (1) (avg:0) +/obj/item/book/manual/wiki/medical_cloning => 0ms (1) (avg:0) +/obj/item/clothing/under/rank/chief_medical_officer => 0ms (1) (avg:0) +/obj/item/clothing/suit/toggle/labcoat/cmo => 0ms (1) (avg:0) +/obj/item/clothing/shoes/sneakers/brown => 0ms (1) (avg:0) +/obj/item/stack/ore/glass => 0ms (1) (avg:0) diff --git a/data/logs/2019/12/03/round-23.56.34/pda.log b/data/logs/2019/12/03/round-23.56.34/pda.log new file mode 100644 index 00000000..77d11362 --- /dev/null +++ b/data/logs/2019/12/03/round-23.56.34/pda.log @@ -0,0 +1,2 @@ +[2019-12-04 04:56:34.963] Starting up round ID . + - ------------------------- diff --git a/data/logs/2019/12/03/round-23.56.34/qdel.log b/data/logs/2019/12/03/round-23.56.34/qdel.log new file mode 100644 index 00000000..30bd3754 --- /dev/null +++ b/data/logs/2019/12/03/round-23.56.34/qdel.log @@ -0,0 +1,3658 @@ +[2019-12-04 04:56:34.967] Starting up round ID . + - ------------------------- +[2019-12-04 05:12:34.799] QDEL: Path: /mob/living/simple_animal/hostile/megafauna/bubblegum + - qdel() Count: 5 + - Destroy() Cost: 2ms + - Total Hard Deletes 5 + - Time Spent Hard Deleting: 594ms + - Path: /mob/living/simple_animal/hostile/asteroid/hivelord/legion/random + - qdel() Count: 3 + - Destroy() Cost: 1ms + - Total Hard Deletes 3 + - Time Spent Hard Deleting: 370ms + - Path: /turf/closed/mineral/random/volcanic + - qdel() Count: 13310 + - Destroy() Cost: 558ms + - Path: /obj/effect/turf_decal/tile/blue + - qdel() Count: 3161 + - Destroy() Cost: 497ms + - Path: /obj/effect/turf_decal/tile/neutral + - qdel() Count: 5232 + - Destroy() Cost: 262ms + - Path: /obj/effect/turf_decal/stripes/line + - qdel() Count: 1518 + - Destroy() Cost: 235ms + - Path: /obj/effect/turf_decal/tile/red + - qdel() Count: 3237 + - Destroy() Cost: 214ms + - Path: /obj/effect/turf_decal/tile/bar + - qdel() Count: 432 + - Destroy() Cost: 120ms + - Path: /obj/effect/decal/cleanable/dirt + - qdel() Count: 922 + - Destroy() Cost: 90ms + - Path: /turf/open/space/basic + - qdel() Count: 1927 + - Destroy() Cost: 41ms + - Path: /obj/effect/spawner/structure/window/reinforced + - qdel() Count: 1385 + - Destroy() Cost: 41ms + - Path: /datum/light_source + - qdel() Count: 837 + - Destroy() Cost: 39ms + - Path: /turf/open/space + - qdel() Count: 766 + - Destroy() Cost: 35ms + - Path: /obj/effect/turf_decal/tile/green + - qdel() Count: 698 + - Destroy() Cost: 34ms + - Path: /atom/movable/lighting_object + - qdel() Count: 1270 + - Destroy() Cost: 26ms + - Path: /turf/closed/mineral/random/labormineral/volcanic + - qdel() Count: 729 + - Destroy() Cost: 24ms + - Path: /datum/timedevent + - qdel() Count: 1683 + - Destroy() Cost: 23ms + - Path: /datum/radiation_wave + - qdel() Count: 3680 + - Destroy() Cost: 22ms + - Path: /obj/effect/turf_decal/tile/brown + - qdel() Count: 516 + - Destroy() Cost: 20ms + - Path: /turf/open/floor/plating/asteroid/airless/cave/volcanic/has_data + - qdel() Count: 301 + - Destroy() Cost: 20ms + - Path: /turf/open/floor/plating/asteroid/snow/airless + - qdel() Count: 306 + - Destroy() Cost: 15ms + - Path: /datum/reagents + - qdel() Count: 929 + - Destroy() Cost: 13ms + - Path: /obj/effect/turf_decal/tile/yellow + - qdel() Count: 516 + - Destroy() Cost: 12ms + - Path: /obj/effect/turf_decal/loading_area + - qdel() Count: 383 + - Destroy() Cost: 12ms + - Path: /obj/effect/hotspot + - qdel() Count: 90 + - Destroy() Cost: 12ms + - Path: /turf/open/floor/plating/asteroid/basalt/lava_land_surface + - qdel() Count: 360 + - Destroy() Cost: 11ms + - Path: /turf/closed/mineral/iron/volcanic + - qdel() Count: 222 + - Destroy() Cost: 11ms + - Path: /datum/powernet + - qdel() Count: 779 + - Destroy() Cost: 10ms + - Path: /obj/effect/turf_decal/delivery + - qdel() Count: 275 + - Destroy() Cost: 10ms + - Path: /turf/closed/wall/mineral/plastitanium + - qdel() Count: 118 + - Destroy() Cost: 9ms + - Path: /obj/effect/mapping_helpers/airlock/cyclelink_helper + - qdel() Count: 204 + - Destroy() Cost: 8ms + - Path: /obj/effect/mapping_helpers/no_lava + - qdel() Count: 202 + - Destroy() Cost: 8ms + - Path: /turf/closed/wall/mineral/titanium + - qdel() Count: 222 + - Destroy() Cost: 7ms + - Path: /obj/effect/turf_decal/bot + - qdel() Count: 189 + - Destroy() Cost: 7ms + - Path: /obj/effect/spawner/structure/window + - qdel() Count: 151 + - Destroy() Cost: 7ms + - Path: /datum/component/mirage_border + - qdel() Count: 96 + - Destroy() Cost: 7ms + - Path: /obj/effect/temp_visual/cult/turf/floor + - qdel() Count: 222 + - Destroy() Cost: 6ms + - Path: /obj/effect/turf_decal/tile/purple + - qdel() Count: 126 + - Destroy() Cost: 6ms + - Path: /turf/open/floor/engine + - qdel() Count: 50 + - Destroy() Cost: 5ms + - Path: /obj/item/projectile/beam/beam_rifle/hitscan/aiming_beam + - qdel() Count: 16 + - Destroy() Cost: 5ms + - Path: /image + - qdel() Count: 1234 + - Destroy() Cost: 4ms + - Path: /turf/open/floor/plating + - qdel() Count: 232 + - Destroy() Cost: 4ms + - Path: /turf/open/space/transit/west + - qdel() Count: 99 + - Destroy() Cost: 4ms + - Path: /obj/effect/abstract/mirage_holder + - qdel() Count: 96 + - Destroy() Cost: 4ms + - Path: /turf/closed/mineral/volcanic/lava_land_surface + - qdel() Count: 28 + - Destroy() Cost: 4ms + - Path: /obj/machinery/computer/arcade + - qdel() Count: 24 + - Destroy() Cost: 4ms + - Path: /obj/effect/projectile_lighting + - qdel() Count: 20 + - Destroy() Cost: 4ms + - Path: /obj/item/projectile/beam/beam_rifle/hitscan + - qdel() Count: 15 + - Destroy() Cost: 4ms + - Path: /obj/effect/spawner/lootdrop/maintenance + - qdel() Count: 130 + - Destroy() Cost: 3ms + - Path: /turf/closed/mineral/random/high_chance/volcanic + - qdel() Count: 105 + - Destroy() Cost: 3ms + - Path: /obj/effect/spawner/structure/window/shuttle + - qdel() Count: 57 + - Destroy() Cost: 3ms + - Path: /obj/effect/spawner/structure/window/hollow/reinforced/end + - qdel() Count: 29 + - Destroy() Cost: 3ms + - Path: /obj/effect/landmark/blobstart + - qdel() Count: 22 + - Destroy() Cost: 3ms + - Path: /obj/item/stack/medical/gauze + - qdel() Count: 15 + - Destroy() Cost: 3ms + - Path: /obj/effect/particle_effect/sparks + - qdel() Count: 11 + - Destroy() Cost: 3ms + - Path: /turf/open/floor/mineral/titanium/blue + - qdel() Count: 182 + - Destroy() Cost: 2ms + - Path: /turf/open/floor/plasteel/dark + - qdel() Count: 136 + - Destroy() Cost: 2ms + - Path: /obj/effect/turf_decal/stripes/corner + - qdel() Count: 76 + - Destroy() Cost: 2ms + - Path: /turf/closed/mineral/random/low_chance + - qdel() Count: 62 + - Destroy() Cost: 2ms + - Path: /turf/closed/mineral/plasma/volcanic + - qdel() Count: 51 + - Destroy() Cost: 2ms + - Path: /turf/closed/mineral/random/high_chance + - qdel() Count: 48 + - Destroy() Cost: 2ms + - Path: /turf/open/floor/plating/asteroid/airless/cave/volcanic + - qdel() Count: 39 + - Destroy() Cost: 2ms + - Path: /obj/effect/spawner/structure/window/plasma/reinforced + - qdel() Count: 36 + - Destroy() Cost: 2ms + - Path: /atom/movable/virtualspeaker + - qdel() Count: 35 + - Destroy() Cost: 2ms + - Path: /obj/effect/landmark/thunderdome/two + - qdel() Count: 30 + - Destroy() Cost: 2ms + - Path: /turf/closed/mineral/silver/volcanic + - qdel() Count: 27 + - Destroy() Cost: 2ms + - Path: /obj/effect/turf_decal/sand + - qdel() Count: 23 + - Destroy() Cost: 2ms + - Path: /turf/closed/mineral/uranium/volcanic + - qdel() Count: 13 + - Destroy() Cost: 2ms + - Path: /obj/effect/decal/cleanable/ash + - qdel() Count: 4 + - Destroy() Cost: 2ms + - Path: /obj/item/radio/headset/heads/cmo + - qdel() Count: 2 + - Destroy() Cost: 2ms + - Path: /mob/living/simple_animal/mouse + - qdel() Count: 2 + - Destroy() Cost: 2ms + - Total Hard Deletes 2 + - Time Spent Hard Deleting: 0ms + - Path: /obj/effect/landmark/start/wizard + - Failures: 1 + - qdel() Count: 1 + - Destroy() Cost: 1ms + - Total Hard Deletes 1 + - Time Spent Hard Deleting: 0ms + - Path: /datum/point/vector + - qdel() Count: 75 + - Destroy() Cost: 1ms + - Path: /turf/open/floor/plating/airless + - qdel() Count: 73 + - Destroy() Cost: 1ms + - Path: /turf/open/floor/mineral/plastitanium/red + - qdel() Count: 62 + - Destroy() Cost: 1ms + - Path: /datum/component/redirect + - qdel() Count: 59 + - Destroy() Cost: 1ms + - Path: /obj/effect/temp_visual/cult/turf + - qdel() Count: 41 + - Destroy() Cost: 1ms + - Path: /datum/language_holder + - qdel() Count: 36 + - Destroy() Cost: 1ms + - Path: /obj/effect/turf_decal/bot_white + - qdel() Count: 35 + - Destroy() Cost: 1ms + - Path: /turf/closed/mineral/gold/volcanic + - qdel() Count: 33 + - Destroy() Cost: 1ms + - Path: /obj/effect/spawner/structure/window/hollow/reinforced + - qdel() Count: 31 + - Destroy() Cost: 1ms + - Path: /turf/closed/mineral/titanium/volcanic + - qdel() Count: 31 + - Destroy() Cost: 1ms + - Path: /obj/effect/landmark/thunderdome/observe + - qdel() Count: 21 + - Destroy() Cost: 1ms + - Path: /obj/effect/spawner/structure/window/hollow/reinforced/middle + - qdel() Count: 20 + - Destroy() Cost: 1ms + - Path: /obj/effect/landmark/xeno_spawn + - qdel() Count: 16 + - Destroy() Cost: 1ms + - Path: /obj/screen/fullscreen/oxy + - qdel() Count: 15 + - Destroy() Cost: 1ms + - Path: /obj/machinery/vending/cola/random + - qdel() Count: 13 + - Destroy() Cost: 1ms + - Path: /turf/open/floor/mineral/titanium/white + - qdel() Count: 13 + - Destroy() Cost: 1ms + - Path: /obj/effect/landmark/prisonwarp + - qdel() Count: 12 + - Destroy() Cost: 1ms + - Path: /obj/effect/spawner/lootdrop/crate_spawner + - qdel() Count: 7 + - Destroy() Cost: 1ms + - Path: /obj/effect/ebeam + - qdel() Count: 5 + - Destroy() Cost: 1ms + - Path: /obj/effect/overlay/vis + - qdel() Count: 5 + - Destroy() Cost: 1ms + - Path: /obj/item/stack/sheet/mineral/wood + - qdel() Count: 4 + - Destroy() Cost: 1ms + - Path: /datum/reagent/ash + - qdel() Count: 4 + - Destroy() Cost: 1ms + - Path: /obj/item/stack/sheet/glass + - qdel() Count: 3 + - Destroy() Cost: 1ms + - Path: /obj/item/organ/lungs + - qdel() Count: 3 + - Destroy() Cost: 1ms + - Path: /obj/item/clothing/suit/toggle/labcoat/cmo + - qdel() Count: 2 + - Destroy() Cost: 1ms + - Path: /obj/item/clothing/shoes/sneakers/brown + - qdel() Count: 2 + - Destroy() Cost: 1ms + - Path: /obj/item/clothing/under/rank/chief_medical_officer + - qdel() Count: 2 + - Destroy() Cost: 1ms + - Path: /datum/beam + - qdel() Count: 2 + - Destroy() Cost: 1ms + - Path: /datum/mood_event/on_fire + - qdel() Count: 2 + - Destroy() Cost: 1ms + - Path: /obj/item/reagent_containers/food/snacks/grown/harebell + - qdel() Count: 1 + - Destroy() Cost: 1ms + - Path: /obj/item/reagent_containers/food/snacks/grown/potato/wedges + - qdel() Count: 1 + - Destroy() Cost: 1ms + - Path: /obj/item/reagent_containers/food/snacks/grown + - qdel() Count: 1 + - Destroy() Cost: 1ms + - Path: /obj/item/reagent_containers/food/snacks/baguette + - qdel() Count: 1 + - Destroy() Cost: 1ms + - Path: /obj/item/reagent_containers/food/snacks/burger/orange + - qdel() Count: 1 + - Destroy() Cost: 1ms + - Path: /obj/item/reagent_containers/food/snacks/cakeslice/pumpkinspice + - qdel() Count: 1 + - Destroy() Cost: 1ms + - Path: /obj/item/reagent_containers/food/snacks/spacefreezy + - qdel() Count: 1 + - Destroy() Cost: 1ms + - Path: /obj/item/reagent_containers/food/snacks/chocolatestrawberry + - qdel() Count: 1 + - Destroy() Cost: 1ms + - Path: /obj/item/reagent_containers/food/snacks/strawberrycupcake + - qdel() Count: 1 + - Destroy() Cost: 1ms + - Path: /obj/item/reagent_containers/food/snacks/dulcedebatataslice + - qdel() Count: 1 + - Destroy() Cost: 1ms + - Path: /obj/item/reagent_containers/food/snacks/salad/fruit + - qdel() Count: 1 + - Destroy() Cost: 1ms + - Path: /obj/item/reagent_containers/food/snacks/soup/clownstears + - qdel() Count: 1 + - Destroy() Cost: 1ms + - Path: /obj/item/reagent_containers/food/snacks/sushi_rice + - qdel() Count: 1 + - Destroy() Cost: 1ms + - Path: /obj/item/reagent_containers/food/snacks/meat/steak + - qdel() Count: 1 + - Destroy() Cost: 1ms + - Path: /obj/item/reagent_containers/food/snacks/rationpack + - qdel() Count: 1 + - Destroy() Cost: 1ms + - Path: /obj/item/reagent_containers/food/drinks/flask/russian + - qdel() Count: 1 + - Destroy() Cost: 1ms + - Path: /obj/item/seeds/cannabis + - qdel() Count: 1 + - Destroy() Cost: 1ms + - Path: /obj/item/seeds/garlic + - qdel() Count: 1 + - Destroy() Cost: 1ms + - Path: /obj/item/seeds/peach + - qdel() Count: 1 + - Destroy() Cost: 1ms + - Path: /datum/holiday/animal + - qdel() Count: 1 + - Destroy() Cost: 1ms + - Path: /datum/species/insect + - qdel() Count: 1 + - Destroy() Cost: 1ms + - Path: /obj/effect/mapping_helpers/planet_z + - qdel() Count: 1 + - Destroy() Cost: 1ms + - Path: /obj/item/book/random/triple + - qdel() Count: 1 + - Destroy() Cost: 1ms + - Path: /obj/item/flashlight/pen + - qdel() Count: 1 + - Destroy() Cost: 1ms + - Path: /datum/action/item_action/toggle_light + - qdel() Count: 1 + - Destroy() Cost: 1ms + - Path: /obj/item/card/id/silver + - qdel() Count: 1 + - Destroy() Cost: 1ms + - Path: /obj/item/storage/firstaid/regular + - qdel() Count: 1 + - Destroy() Cost: 1ms + - Path: /obj/effect/landmark/start/bartender + - qdel() Count: 1 + - Destroy() Cost: 1ms + - Path: /datum/action/item_action/storage_gather_mode + - qdel() Count: 1 + - Destroy() Cost: 1ms + - Path: /obj/item/book/manual/wiki/medical_cloning + - qdel() Count: 1 + - Destroy() Cost: 1ms + - Path: /obj/structure/lattice + - qdel() Count: 1 + - Destroy() Cost: 1ms + - Path: /turf/closed/wall/r_wall + - qdel() Count: 1 + - Destroy() Cost: 1ms + - Path: /obj/effect/landmark/start/nukeop + - Failures: 4 + - qdel() Count: 4 + - Destroy() Cost: 0ms + - Total Hard Deletes 4 + - Time Spent Hard Deleting: 0ms + - Path: /obj/effect/landmark/start/nukeop_leader + - Failures: 1 + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Total Hard Deletes 1 + - Time Spent Hard Deleting: 0ms + - Path: /obj/effect/landmark/start/new_player + - Failures: 1 + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Total Hard Deletes 1 + - Time Spent Hard Deleting: 0ms + - Path: /datum/component/forensics + - qdel() Count: 141 + - Destroy() Cost: 0ms + - Path: /turf/open/floor/mineral/titanium + - qdel() Count: 131 + - Destroy() Cost: 0ms + - Path: /obj/effect/landmark/thunderdome/one + - qdel() Count: 30 + - Destroy() Cost: 0ms + - Path: /datum/wires/vending + - qdel() Count: 24 + - Destroy() Cost: 0ms + - Path: /turf/closed/mineral/random + - qdel() Count: 21 + - Destroy() Cost: 0ms + - Path: /obj/effect/landmark/start/assistant + - qdel() Count: 19 + - Destroy() Cost: 0ms + - Path: /turf/open/floor/pod/light + - qdel() Count: 17 + - Destroy() Cost: 0ms + - Path: /obj/effect/projectile/tracer/tracer/aiming + - qdel() Count: 16 + - Destroy() Cost: 0ms + - Path: /obj/effect/landmark/start/security_officer + - qdel() Count: 15 + - Destroy() Cost: 0ms + - Path: /obj/effect/turf_decal/plaque + - qdel() Count: 14 + - Destroy() Cost: 0ms + - Path: /obj/docking_port/stationary + - qdel() Count: 14 + - Destroy() Cost: 0ms + - Path: /obj/effect/turf_decal/sand/plating + - qdel() Count: 12 + - Destroy() Cost: 0ms + - Path: /turf/open/floor/mineral/titanium/yellow + - qdel() Count: 12 + - Destroy() Cost: 0ms + - Path: /obj/machinery/vending/snack/random + - qdel() Count: 11 + - Destroy() Cost: 0ms + - Path: /obj/effect/landmark/holding_facility + - qdel() Count: 10 + - Destroy() Cost: 0ms + - Path: /obj/item/circuitboard/computer/arcade/orion_trail + - qdel() Count: 10 + - Destroy() Cost: 0ms + - Path: /obj/item/circuitboard/computer/arcade/battle + - qdel() Count: 10 + - Destroy() Cost: 0ms + - Path: /turf/open/floor/pod/dark + - qdel() Count: 10 + - Destroy() Cost: 0ms + - Path: /turf/open/floor/mineral/plastitanium/red/brig + - qdel() Count: 10 + - Destroy() Cost: 0ms + - Path: /obj/effect/temp_visual/explosion/fast + - qdel() Count: 10 + - Destroy() Cost: 0ms + - Path: /obj/effect/landmark/ert_spawn + - qdel() Count: 9 + - Destroy() Cost: 0ms + - Path: /obj/effect/baseturf_helper/asteroid/airless + - qdel() Count: 9 + - Destroy() Cost: 0ms + - Path: /obj/effect/temp_visual/dir_setting/firing_effect/energy + - qdel() Count: 9 + - Destroy() Cost: 0ms + - Path: /obj/effect/projectile/tracer/tracer/beam_rifle + - qdel() Count: 9 + - Destroy() Cost: 0ms + - Path: /obj/effect/landmark/thunderdome/admin + - qdel() Count: 8 + - Destroy() Cost: 0ms + - Path: /obj/effect/spawner/lootdrop/mre + - qdel() Count: 8 + - Destroy() Cost: 0ms + - Path: /datum/component/squeak + - qdel() Count: 8 + - Destroy() Cost: 0ms + - Path: /datum/status_effect/crusher_damage + - qdel() Count: 8 + - Destroy() Cost: 0ms + - Path: /datum/job/doctor + - qdel() Count: 7 + - Destroy() Cost: 0ms + - Path: /obj/effect/turf_decal/bot_white/right + - qdel() Count: 7 + - Destroy() Cost: 0ms + - Path: /obj/effect/turf_decal/bot_white/left + - qdel() Count: 7 + - Destroy() Cost: 0ms + - Path: /datum/effect_system/spark_spread + - qdel() Count: 7 + - Destroy() Cost: 0ms + - Path: /obj/effect/mapping_helpers/airlock/locked + - qdel() Count: 6 + - Destroy() Cost: 0ms + - Path: /obj/effect/spawner/lootdrop/gloves + - qdel() Count: 6 + - Destroy() Cost: 0ms + - Path: /obj/effect/spawner/lootdrop/bedsheet + - qdel() Count: 6 + - Destroy() Cost: 0ms + - Path: /obj/item/toy/plush/random + - qdel() Count: 6 + - Destroy() Cost: 0ms + - Path: /turf/closed/mineral/gibtonite/volcanic + - qdel() Count: 6 + - Destroy() Cost: 0ms + - Path: /datum/component/ntnet_interface + - qdel() Count: 6 + - Destroy() Cost: 0ms + - Path: /obj/effect/baseturf_helper/lava_land/surface + - qdel() Count: 6 + - Destroy() Cost: 0ms + - Path: /obj/effect/landmark/start/scientist + - qdel() Count: 6 + - Destroy() Cost: 0ms + - Path: /obj/effect/turf_decal/stripes/end + - qdel() Count: 5 + - Destroy() Cost: 0ms + - Path: /obj/item/stack/sheet/mineral/plasma + - qdel() Count: 5 + - Destroy() Cost: 0ms + - Path: /datum/component/footstep + - qdel() Count: 5 + - Destroy() Cost: 0ms + - Path: /obj/machinery/door/airlock/maintenance/abandoned + - qdel() Count: 5 + - Destroy() Cost: 0ms + - Path: /datum/wires/airlock + - qdel() Count: 5 + - Destroy() Cost: 0ms + - Path: /turf/open/floor/mineral/plastitanium + - qdel() Count: 5 + - Destroy() Cost: 0ms + - Path: /obj/effect/landmark/start/station_engineer + - qdel() Count: 5 + - Destroy() Cost: 0ms + - Path: /obj/effect/landmark/secequipment + - qdel() Count: 4 + - Destroy() Cost: 0ms + - Path: /obj/effect/landmark/river_waypoint + - qdel() Count: 4 + - Destroy() Cost: 0ms + - Path: /obj/item/circuitboard/computer/arcade/minesweeper + - qdel() Count: 4 + - Destroy() Cost: 0ms + - Path: /obj/effect/spawner/lootdrop/keg + - qdel() Count: 4 + - Destroy() Cost: 0ms + - Path: /turf/open/floor/circuit/red + - qdel() Count: 4 + - Destroy() Cost: 0ms + - Path: /turf/closed/wall/mineral/plastitanium/nodiagonal + - qdel() Count: 4 + - Destroy() Cost: 0ms + - Path: /turf/closed/wall/mineral/titanium/interior + - qdel() Count: 4 + - Destroy() Cost: 0ms + - Path: /obj/screen/fullscreen/blind + - qdel() Count: 4 + - Destroy() Cost: 0ms + - Path: /datum/progressbar + - qdel() Count: 4 + - Destroy() Cost: 0ms + - Path: /obj/effect/spawner/lootdrop/glowstick + - qdel() Count: 3 + - Destroy() Cost: 0ms + - Path: /obj/effect/spawner/structure/window/reinforced/tinted + - qdel() Count: 3 + - Destroy() Cost: 0ms + - Path: /obj/item/stack/sheet/plasteel + - qdel() Count: 3 + - Destroy() Cost: 0ms + - Path: /turf/closed/mineral/bscrystal/volcanic + - qdel() Count: 3 + - Destroy() Cost: 0ms + - Path: /obj/item/organ/brain + - qdel() Count: 3 + - Destroy() Cost: 0ms + - Path: /obj/item/organ/heart + - qdel() Count: 3 + - Destroy() Cost: 0ms + - Path: /obj/item/organ/liver + - qdel() Count: 3 + - Destroy() Cost: 0ms + - Path: /obj/item/organ/stomach + - qdel() Count: 3 + - Destroy() Cost: 0ms + - Path: /obj/item/organ/appendix + - qdel() Count: 3 + - Destroy() Cost: 0ms + - Path: /obj/item/organ/eyes + - qdel() Count: 3 + - Destroy() Cost: 0ms + - Path: /obj/screen/alert/blind + - qdel() Count: 3 + - Destroy() Cost: 0ms + - Path: /obj/item/organ/ears + - qdel() Count: 3 + - Destroy() Cost: 0ms + - Path: /obj/item/organ/tongue + - qdel() Count: 3 + - Destroy() Cost: 0ms + - Path: /obj/screen/movable/action_button + - qdel() Count: 3 + - Destroy() Cost: 0ms + - Path: /obj/effect/landmark/start/shaft_miner + - qdel() Count: 3 + - Destroy() Cost: 0ms + - Path: /obj/effect/landmark/start/medical_doctor + - qdel() Count: 3 + - Destroy() Cost: 0ms + - Path: /datum/DBQuery + - qdel() Count: 2 + - Destroy() Cost: 0ms + - Path: /obj/effect/landmark/xmastree + - qdel() Count: 2 + - Destroy() Cost: 0ms + - Path: /datum/component/wearertargeting/earprotection + - qdel() Count: 2 + - Destroy() Cost: 0ms + - Path: /datum/callback + - qdel() Count: 2 + - Destroy() Cost: 0ms + - Path: /obj/effect/spawner/lootdrop/grille_or_trash + - qdel() Count: 2 + - Destroy() Cost: 0ms + - Path: /icon + - qdel() Count: 2 + - Destroy() Cost: 0ms + - Path: /obj/effect/mob_spawn/human/corpse/damaged + - qdel() Count: 2 + - Destroy() Cost: 0ms + - Path: /obj/effect/spawner/structure/window/hollow/reinforced/directional + - qdel() Count: 2 + - Destroy() Cost: 0ms + - Path: /obj/item/stack/ore/bluespace_crystal + - qdel() Count: 2 + - Destroy() Cost: 0ms + - Path: /obj/item/stack/sheet/mineral/silver + - qdel() Count: 2 + - Destroy() Cost: 0ms + - Path: /obj/item/stack/sheet/mineral/gold + - qdel() Count: 2 + - Destroy() Cost: 0ms + - Path: /obj/item/clothing/under/color/random + - qdel() Count: 2 + - Destroy() Cost: 0ms + - Path: /obj/effect/baseturf_helper/asteroid/snow + - qdel() Count: 2 + - Destroy() Cost: 0ms + - Path: /datum/gas_mixture + - qdel() Count: 2 + - Destroy() Cost: 0ms + - Path: /datum/wires/radio + - qdel() Count: 2 + - Destroy() Cost: 0ms + - Path: /obj/item/encryptionkey/heads/cmo + - qdel() Count: 2 + - Destroy() Cost: 0ms + - Path: /datum/component/empprotection + - qdel() Count: 2 + - Destroy() Cost: 0ms + - Path: /datum/component/storage/concrete + - qdel() Count: 2 + - Destroy() Cost: 0ms + - Path: /obj/screen/storage + - qdel() Count: 2 + - Destroy() Cost: 0ms + - Path: /obj/screen/close + - qdel() Count: 2 + - Destroy() Cost: 0ms + - Path: /obj/item/stack/medical/bruise_pack + - qdel() Count: 2 + - Destroy() Cost: 0ms + - Path: /obj/item/stack/medical/ointment + - qdel() Count: 2 + - Destroy() Cost: 0ms + - Path: /mob/dead/new_player + - qdel() Count: 2 + - Destroy() Cost: 0ms + - Total Hard Deletes 1 + - Time Spent Hard Deleting: 0ms + - Path: /obj/effect/landmark/start/roboticist + - qdel() Count: 2 + - Destroy() Cost: 0ms + - Path: /obj/effect/landmark/start/cargo_technician + - qdel() Count: 2 + - Destroy() Cost: 0ms + - Path: /obj/effect/landmark/start/geneticist + - qdel() Count: 2 + - Destroy() Cost: 0ms + - Path: /obj/effect/landmark/start/atmospheric_technician + - qdel() Count: 2 + - Destroy() Cost: 0ms + - Path: /obj/effect/landmark/start/botanist + - qdel() Count: 2 + - Destroy() Cost: 0ms + - Path: /obj/effect/landmark/start/chemist + - qdel() Count: 2 + - Destroy() Cost: 0ms + - Path: /obj/effect/landmark/start/lawyer + - qdel() Count: 2 + - Destroy() Cost: 0ms + - Path: /obj/effect/decal/cleanable/blood/old + - qdel() Count: 2 + - Destroy() Cost: 0ms + - Path: /datum/thrownthing + - qdel() Count: 2 + - Destroy() Cost: 0ms + - Path: /obj/structure/grille + - qdel() Count: 2 + - Destroy() Cost: 0ms + - Path: /obj/effect/dummy/lighting_obj/moblight/fire + - qdel() Count: 2 + - Destroy() Cost: 0ms + - Path: /obj/screen/alert/fire + - qdel() Count: 2 + - Destroy() Cost: 0ms + - Path: /datum/mood_event/hot + - qdel() Count: 2 + - Destroy() Cost: 0ms + - Path: /obj/screen/alert/cold + - qdel() Count: 2 + - Destroy() Cost: 0ms + - Path: /obj/item/stack/rods + - qdel() Count: 2 + - Destroy() Cost: 0ms + - Path: /obj/structure/grille/broken + - qdel() Count: 2 + - Destroy() Cost: 0ms + - Path: /obj/structure/cable + - qdel() Count: 2 + - Destroy() Cost: 0ms + - Path: /obj/belly + - qdel() Count: 2 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/grown/banana/bombanana + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/grown/banana/mime + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/grown/banana/bluespace + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/grown/banana/banana_spider_spawnable + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/grown/banana + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/grown/shell/eggy + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/grown/shell/gatfruit + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/grown/shell + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/grown/ambrosia/vulgaris + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/grown/ambrosia/deus + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/grown/ambrosia/gaia + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/grown/ambrosia + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/grown/apple/gold + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/grown/apple + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/grown/soybeans + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/grown/koibeans + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/grown/berries/poison + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/grown/berries/death + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/grown/berries/glow + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/grown/berries + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/grown/cherries + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/grown/bluecherries + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/grown/grapes/green + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/grown/grapes + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/grown/strawberry + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/grown/cannabis/rainbow + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/grown/cannabis/death + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/grown/cannabis/white + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/grown/cannabis/ultimate + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/grown/cannabis + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/grown/wheat + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/grown/oat + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/grown/rice + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/grown/meatwheat + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/grown/chili + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/grown/icepepper + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/grown/ghost_chili + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/grown/citrus/lime + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/grown/citrus/orange + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/grown/citrus/lemon + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/grown/citrus + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/grown/firelemon + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/grown/cocoapod + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/grown/vanillapod + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/grown/bungofruit + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/grown/bungopit + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/grown/corn + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/grown/eggplant + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/grown/poppy/lily + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/grown/poppy/geranium + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/grown/poppy + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/grown/trumpet + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/grown/moonflower + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/grown/bee_balm/honey + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/grown/bee_balm + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/grown/garlic + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/grown/grass/carpet + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/grown/grass + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/grown/kudzupod + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/grown/watermelon + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/grown/holymelon + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/grown/galaxythistle + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/grown/cabbage + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/grown/sugarcane + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/grown/cherry_bomb + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/grown/mushroom/reishi + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/grown/mushroom/amanita + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/grown/mushroom/angel + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/grown/mushroom/libertycap + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/grown/mushroom/plumphelmet + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/grown/mushroom/walkingmushroom + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/grown/mushroom/chanterelle + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/grown/mushroom/jupitercup + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/grown/mushroom/glowshroom/glowcap + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/grown/mushroom/glowshroom/shadowshroom + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/grown/mushroom/glowshroom + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/grown/mushroom + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/grown/nettle/basic + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/grown/nettle/death + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/grown/nettle + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/grown/onion/red + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/grown/onion + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/grown/peach + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/grown/peanut + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/grown/pineapple + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/grown/potato/sweet + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/grown/potato + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/grown/pumpkin + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/grown/blumpkin + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/grown/random + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/grown/carrot + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/grown/parsnip + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/grown/whitebeet + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/grown/redbeet + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/grown/tea/astra + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/grown/tea/catnip + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/grown/tea + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/grown/coffee/robusta + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/grown/coffee + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/grown/tobacco/space + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/grown/tobacco + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/grown/tomato/blood + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/grown/tomato/blue/bluespace + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/grown/tomato/blue + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/grown/tomato/killer + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/grown/tomato + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/grown/ash_flora/shavings + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/grown/ash_flora/mushroom_leaf + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/grown/ash_flora/mushroom_cap + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/grown/ash_flora/mushroom_stem + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/grown/ash_flora/cactus_fruit + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/grown/ash_flora + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/clothing + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/sugarcookie/spookyskull + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/sugarcookie/spookycoffin + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/sugarcookie + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/candyheart + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/customizable/burger + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/customizable/bread + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/customizable/cake + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/customizable/kebab + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/customizable/pasta + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/customizable/pie + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/customizable/pizza + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/customizable/salad/ashsalad + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/customizable/salad + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/customizable/sandwich + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/customizable/soup/ashsoup + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/customizable/soup + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/customizable + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/store/bread/plain + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/store/bread/meat + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/store/bread/xenomeat + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/store/bread/spidermeat + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/store/bread/banana + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/store/bread/tofu + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/store/bread/creamcheese + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/store/bread/mimana + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/store/bread + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/store/cake/plain + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/store/cake/carrot + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/store/cake/brain + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/store/cake/cheese + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/store/cake/orange + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/store/cake/lime + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/store/cake/lemon + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/store/cake/chocolate + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/store/cake/birthday + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/store/cake/apple + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/store/cake/slimecake + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/store/cake/pumpkinspice + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/store/cake/bsvc + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/store/cake/bscc + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/store/cake/holy_cake + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/store/cake/pound_cake + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/store/cake/hardware_cake + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/store/cake/vanilla_cake + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/store/cake/clown_cake + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/store/cake/brioche + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/store/cake + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/store/cheesewheel + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/store + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/breadslice/plain + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/breadslice/meat + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/breadslice/xenomeat + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/breadslice/spidermeat + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/breadslice/banana + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/breadslice/tofu + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/breadslice/creamcheese + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/breadslice/mimana + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/breadslice/custom + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/breadslice + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/garlicbread + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/deepfryholder + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/butteredtoast + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/butterbiscuit + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/butterdog + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/burger/plain + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/burger/human + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/burger/corgi + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/burger/appendix + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/burger/fish + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/burger/tofu + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/burger/roburger + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/burger/roburgerbig + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/burger/xeno + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/burger/bearger + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/burger/clown + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/burger/mime + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/burger/brain + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/burger/ghost + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/burger/red + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/burger/yellow + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/burger/green + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/burger/blue + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/burger/purple + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/burger/black + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/burger/white + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/burger/spell + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/burger/bigbite + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/burger/jelly/slime + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/burger/jelly/cherry + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/burger/jelly + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/burger/superbite + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/burger/fivealarm + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/burger/rat + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/burger/baseball + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/burger/baconburger + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/burger + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/cakeslice/plain + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/cakeslice/carrot + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/cakeslice/brain + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/cakeslice/cheese + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/cakeslice/orange + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/cakeslice/lime + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/cakeslice/lemon + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/cakeslice/chocolate + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/cakeslice/birthday + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/cakeslice/apple + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/cakeslice/custom + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/cakeslice/slimecake + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/cakeslice/bsvc + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/cakeslice/bscc + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/cakeslice/holy_cake_slice + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/cakeslice/pound_cake_slice + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/cakeslice/hardware_cake_slice + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/cakeslice/vanilla_slice + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/cakeslice/clown_slice + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/cakeslice/brioche + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/cakeslice + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/chocolateegg + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/egg/gland + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/egg/blue + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/egg/green + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/egg/mime + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/egg/orange + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/egg/purple + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/egg/rainbow + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/egg/red + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/egg/yellow + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/egg/loaded + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/egg/kiwiEgg + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/egg + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/friedegg + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/boiledegg + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/omelette + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/benedict + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/icecreamsandwich + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/sundae + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/honkdae + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/snowcones/lime + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/snowcones/lemon + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/snowcones/apple + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/snowcones/grape + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/snowcones/orange + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/snowcones/blue + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/snowcones/red + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/snowcones/kiwi + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/snowcones/mix + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/snowcones/fruitsalad + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/snowcones/pineapple + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/snowcones/mime + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/snowcones/clown + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/snowcones/soda + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/snowcones/pwgrmer + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/snowcones/honey + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/snowcones/rainbow + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/snowcones + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/cubancarp + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/carpmeat/imitation + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/carpmeat/aquatic + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/carpmeat + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/fishfingers + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/fishandchips + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/sushi_basic + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/sushi_adv + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/sushi_pro + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/tofu + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/spiderleg + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/cornedbeef + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/bearsteak + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/faggot + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/sausage + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/kebab/human + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/kebab/monkey + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/kebab/tofu + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/kebab/tail + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/kebab/rat/double + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/kebab/rat + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/kebab + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/rawkhinkali + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/khinkali + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/monkeycube + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/enchiladas + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/stewedsoymeat + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/boiledspiderleg + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/spidereggsham + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/sashimi + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/nugget + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/pigblanket + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/cheesewedge + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/watermelonslice + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/candy_corn + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/chocolatebar + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/hugemushroomslice + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/popcorn + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/loadedbakedpotato + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/fries + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/tatortot + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/soydope + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/cheesyfries + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/badrecipe + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/carrotfries + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/candiedapple + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/mint + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/eggwrap + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/beans + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/spidereggs + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/spiderling + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/spiderlollipop + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/tobiko + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/chococoin + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/fudgedice + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/chocoorange + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/eggplantparm + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/tortilla + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/burrito + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/cheesyburrito + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/carneburrito + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/fuegoburrito + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/yakiimo + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/roastparsnip + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/melonfruitbowl + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/nachos + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/cheesynachos + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/cubannachos + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/melonkeg + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/honeybar + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/stuffedlegion + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/powercrepe + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/lollipop/cyborg + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/lollipop + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/gumball/cyborg + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/gumball + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/taco/plain + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/taco + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/branrequests + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/butter + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/onionrings + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/pineappleslice + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/tinychocolate + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/riceball + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/cannedpeaches/maint + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/cannedpeaches + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/donut/chaos + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/donut/jelly/slimejelly + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/donut/jelly/cherryjelly + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/donut/jelly + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/donut/meat + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/donut/semen + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/donut + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/muffin/berry + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/muffin/booberry + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/muffin + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/chawanmushi + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/waffles + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/soylentgreen + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/soylenviridians + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/rofflewaffles + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/cookie + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/donkpocket/warm + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/donkpocket + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/dankpocket + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/fortunecookie + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/poppypretzel + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/plumphelmetbiscuit + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/cracker + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/hotdog + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/meatbun + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/khachapuri + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/chococornet + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/oatmealcookie + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/raisincookie + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/cherrycupcake + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/bluecherrycupcake + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/honeybun + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/pancakes/blueberry + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/pancakes/chocolatechip + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/pancakes + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/pie/plain + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/pie/cream/nostun + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/pie/cream/body + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/pie/cream + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/pie/berryclafoutis + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/pie/bearypie + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/pie/meatpie + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/pie/tofupie + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/pie/amanita_pie + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/pie/plump_pie + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/pie/xemeatpie + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/pie/applepie + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/pie/cherrypie + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/pie/pumpkinpie + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/pie/appletart + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/pie/grapetart + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/pie/mimetart + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/pie/berrytart + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/pie/cocolavatart + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/pie/blumpkinpie + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/pie/dulcedebatata + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/pie/frostypie + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/pie/baklava + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/pie/strawberrypie + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/pie + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/pumpkinpieslice + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/blumpkinpieslice + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/baklavaslice + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/pizza/margherita/robo + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/pizza/margherita + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/pizza/meat + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/pizza/mushroom + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/pizza/vegetable + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/pizza/donkpocket + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/pizza/dank + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/pizza/sassysage + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/pizza/pineapple/anomaly + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/pizza/pineapple + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/pizza/arnold + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/pizza + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/pizzaslice/margherita + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/pizzaslice/meat + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/pizzaslice/mushroom + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/pizzaslice/vegetable + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/pizzaslice/donkpocket + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/pizzaslice/dank + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/pizzaslice/sassysage + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/pizzaslice/pineapple/anomaly + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/pizzaslice/pineapple + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/pizzaslice/arnold + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/pizzaslice/custom + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/pizzaslice/pepperoni + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/pizzaslice + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/salad/aesirsalad + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/salad/herbsalad + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/salad/validsalad + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/salad/oatmeal + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/salad/jungle + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/salad/citrusdelight + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/salad/ricebowl + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/salad/boiledrice + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/salad/ricepudding + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/salad/ricepork + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/salad/eggbowl + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/salad + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/sandwich + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/toastedsandwich + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/grilledcheese + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/jellysandwich/slime + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/jellysandwich/cherry + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/jellysandwich/pbj/cherry + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/jellysandwich/pbj/slime + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/jellysandwich/pbj + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/jellysandwich + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/peanutbutter_sandwich + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/notasandwich + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/jelliedtoast/cherry + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/jelliedtoast/slime + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/jelliedtoast + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/peanut_buttertoast + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/twobread + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/tuna_sandwich + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/soup/wish + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/soup/meatball + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/soup/slime + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/soup/blood + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/soup/wingfangchu + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/soup/vegetable + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/soup/nettle + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/soup/mystery + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/soup/hotchili + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/soup/coldchili + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/soup/monkeysdelight + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/soup/tomato/eyeball + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/soup/tomato + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/soup/milo + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/soup/mushroom + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/soup/beet/red + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/soup/beet + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/soup/spacylibertyduff + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/soup/amanitajelly + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/soup/stew + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/soup/sweetpotato + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/soup/macaco + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/soup/mammi + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/soup + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/spaghetti + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/boiledspaghetti + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/pastatomato + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/copypasta + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/meatballspaghetti + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/spesslaw + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/chowmein + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/beefnoodle + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/butternoodles + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/sea_weed + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/tuna + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/sushie_basic + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/sushie_adv + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/sushie_pro + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/candy + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/sosjerky/healthy + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/sosjerky + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/chips + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/no_raisin/healthy + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/no_raisin + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/spacetwinkie + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/cheesiehonkers + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/syndicake + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/dough + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/flatdough + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/pizzabread + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/doughslice + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/bun + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/cakebatter + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/piedough + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/rawpastrybase + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/pastrybase + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/meat/slab/human/mutant/slime + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/meat/slab/human/mutant/golem/adamantine + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/meat/slab/human/mutant/golem + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/meat/slab/human/mutant/lizard + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/meat/slab/human/mutant/plant + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/meat/slab/human/mutant/shadow + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/meat/slab/human/mutant/fly + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/meat/slab/human/mutant/moth + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/meat/slab/human/mutant/skeleton + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/meat/slab/human/mutant/zombie + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/meat/slab/human/mutant/ipc + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/meat/slab/human/mutant/avian + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/meat/slab/human/mutant/mammal + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/meat/slab/human/mutant + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/meat/slab/human + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/meat/slab/synthmeat + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/meat/slab/meatproduct + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/meat/slab/monkey + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/meat/slab/corgi + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/meat/slab/pug + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/meat/slab/killertomato + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/meat/slab/bear + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/meat/slab/xeno + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/meat/slab/spider + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/meat/slab/goliath + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/meat/slab/meatwheat + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/meat/slab/gorilla + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/meat/slab/gondola + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/meat/slab + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/meat/rawbacon + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/meat/bacon + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/meat/steak/plain/human + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/meat/steak/plain + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/meat/steak/killertomato + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/meat/steak/bear + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/meat/steak/xeno + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/meat/steak/spider + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/meat/steak/goliath + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/meat/steak/gondola + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/meat/rawcutlet/plain/human + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/meat/rawcutlet/plain + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/meat/rawcutlet/killertomato + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/meat/rawcutlet/bear + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/meat/rawcutlet/xeno + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/meat/rawcutlet/spider + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/meat/rawcutlet/gondola + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/meat/rawcutlet + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/meat/cutlet/plain/human + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/meat/cutlet/plain + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/meat/cutlet/killertomato + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/meat/cutlet/bear + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/meat/cutlet/xeno + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/meat/cutlet/spider + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/meat/cutlet/gondola + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/meat/cutlet + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/meat + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/icecream + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/hotcrossbun + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/scotchegg + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/chocolatebunny + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/onion_slice/red + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/onion_slice + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/roasted_peanuts + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/deadmouse + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/organ + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks/deadbanana_spider + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/snacks + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/drinks/soda_cans/canned_laughter + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/drinks/soda_cans/cola + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/drinks/soda_cans/tonic + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/drinks/soda_cans/sodawater + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/drinks/soda_cans/lemon_lime + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/drinks/soda_cans/space_up + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/drinks/soda_cans/starkist + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/drinks/soda_cans/space_mountain_wind + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/drinks/soda_cans/thirteenloko + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/drinks/soda_cans/dr_gibb + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/drinks/soda_cans/pwr_game + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/drinks/soda_cans/shamblers + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/drinks/soda_cans/grey_bull + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/drinks/soda_cans/air + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/drinks/soda_cans + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/drinks/trophy/gold_cup + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/drinks/trophy/silver_cup + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/drinks/trophy/bronze_cup + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/drinks/trophy + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/drinks/coffee/type2 + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/drinks/coffee + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/drinks/ice + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/drinks/mug/tea + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/drinks/mug/coco + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/drinks/mug + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/drinks/dry_ramen + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/drinks/beer/light + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/drinks/beer + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/drinks/ale + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/drinks/sillycup/smallcarton + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/drinks/sillycup + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/drinks/shaker + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/drinks/flask/gold + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/drinks/flask/det + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/drinks/flask/steel + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/drinks/flask + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/drinks/britcup + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/drinks/bottle/gin + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/drinks/bottle/whiskey + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/drinks/bottle/vodka/badminka + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/drinks/bottle/vodka + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/drinks/bottle/tequila + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/drinks/bottle/bottleofnothing + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/drinks/bottle/patron + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/drinks/bottle/rum + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/drinks/bottle/holywater/hell + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/drinks/bottle/holywater + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/drinks/bottle/holyoil/empty + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/drinks/bottle/holyoil + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/drinks/bottle/vermouth + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/drinks/bottle/kahlua + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/drinks/bottle/goldschlager + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/drinks/bottle/cognac + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/drinks/bottle/wine + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/drinks/bottle/absinthe/premium + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/drinks/bottle/absinthe + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/drinks/bottle/lizardwine + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/drinks/bottle/hcider + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/drinks/bottle/grappa + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/drinks/bottle/sake + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/drinks/bottle/fernet + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/drinks/bottle/applejack + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/drinks/bottle/champagne + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/drinks/bottle/blazaam + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/drinks/bottle/trappist + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/drinks/bottle/orangejuice + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/drinks/bottle/cream + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/drinks/bottle/tomatojuice + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/drinks/bottle/limejuice + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/drinks/bottle/menthol + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/drinks/bottle/grenadine + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/drinks/bottle/molotov + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/drinks/bottle + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/drinks/drinkingglass/shotglass + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/drinks/drinkingglass/filled/soda + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/drinks/drinkingglass/filled/cola + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/drinks/drinkingglass/filled/nuka_cola + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/drinks/drinkingglass/filled/syndicatebomb + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/drinks/drinkingglass/filled + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/drinks/drinkingglass + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/drinks + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/urinalcake + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/condiment/enzyme + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/condiment/sugar + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/condiment/saltshaker + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/condiment/peppermill + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/condiment/milk + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/condiment/flour + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/condiment/soymilk + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/condiment/rice + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/condiment/soysauce + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/condiment/mayonnaise + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/condiment/pack/ketchup + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/condiment/pack/hotsauce + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/condiment/pack/astrotame + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/condiment/pack + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/food/condiment + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/seeds/sample/alienweed + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/seeds/sample + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/seeds/ambrosia/deus + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/seeds/ambrosia/gaia + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/seeds/ambrosia + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/seeds/apple/gold + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/seeds/apple + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/seeds/banana/mime + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/seeds/banana/bluespace + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/seeds/banana/exotic_banana + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/seeds/banana + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/seeds/soya/koi + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/seeds/soya + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/seeds/berry/poison + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/seeds/berry/death + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/seeds/berry/glow + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/seeds/berry + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/seeds/cherry/blue + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/seeds/cherry/bomb + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/seeds/cherry + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/seeds/grape/green + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/seeds/grape + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/seeds/strawberry + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/seeds/cannabis/rainbow + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/seeds/cannabis/death + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/seeds/cannabis/white + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/seeds/cannabis/ultimate + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/seeds/wheat/oat + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/seeds/wheat/rice + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/seeds/wheat/meat + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/seeds/wheat + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/seeds/chili/ice + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/seeds/chili/ghost + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/seeds/chili + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/seeds/lime + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/seeds/orange + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/seeds/lemon + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/seeds/firelemon + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/seeds/cocoapod/vanillapod + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/seeds/cocoapod/bungotree + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/seeds/cocoapod + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/seeds/corn/snapcorn + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/seeds/corn + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/seeds/cotton/durathread + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/seeds/cotton + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/seeds/eggplant/eggy + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/seeds/eggplant + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/seeds/poppy/lily/trumpet + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/seeds/poppy/lily + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/seeds/poppy/geranium + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/seeds/poppy + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/seeds/harebell + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/seeds/sunflower/moonflower + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/seeds/sunflower/novaflower + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/seeds/sunflower + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/seeds/bee_balm/honey + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/seeds/bee_balm + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/seeds/grass/carpet + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/seeds/grass + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/seeds/kudzu + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/seeds/watermelon/holy + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/seeds/watermelon + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/seeds/starthistle/T + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/seeds/starthistle + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/seeds/galaxythistle + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/seeds/cabbage + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/seeds/sugarcane + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/seeds/gatfruit + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/seeds/lavaland/cactus + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/seeds/lavaland/polypore + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/seeds/lavaland/porcini + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/seeds/lavaland/inocybe + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/seeds/lavaland/ember + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/seeds/lavaland + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/seeds/reishi + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/seeds/amanita + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/seeds/angel + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/seeds/liberty + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/seeds/plump/walkingmushroom + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/seeds/plump + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/seeds/chanter + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/seeds/chanterelle/jupitercup + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/seeds/chanterelle + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/seeds/glowshroom/glowcap + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/seeds/glowshroom/shadowshroom + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/seeds/glowshroom + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/seeds/nettle/death + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/seeds/nettle + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/seeds/onion/red + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/seeds/onion + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/seeds/peanutseed + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/seeds/pineapple + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/seeds/potato/sweet + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/seeds/potato + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/seeds/pumpkin/blumpkin + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/seeds/pumpkin + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/seeds/random + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/seeds/replicapod + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/seeds/carrot/parsnip + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/seeds/carrot + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/seeds/whitebeet + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/seeds/redbeet + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/seeds/tea/astra + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/seeds/tea/catnip + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/seeds/tea + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/seeds/coffee/robusta + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/seeds/coffee + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/seeds/tobacco/space + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/seeds/tobacco + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/seeds/tomato/blood + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/seeds/tomato/blue/bluespace + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/seeds/tomato/blue + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/seeds/tomato/killer + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/seeds/tomato + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/seeds/tower/steel + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/seeds/tower + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /datum/game_mode/traitor/bros + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /datum/game_mode/traitor/changeling + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /datum/game_mode/traitor/internal_affairs + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /datum/game_mode/traitor + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /datum/game_mode/changeling + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /datum/game_mode/clockwork_cult + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /datum/game_mode/nuclear/clown_ops + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /datum/game_mode/nuclear + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /datum/game_mode/cult + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /datum/game_mode/devil/devil_agents + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /datum/game_mode/devil + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /datum/game_mode/extended/announced + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /datum/game_mode/extended + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /datum/game_mode/meteor + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /datum/game_mode/monkey + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /datum/game_mode/overthrow + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /datum/game_mode/revolution/extended + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /datum/game_mode/revolution/speedy + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /datum/game_mode/revolution + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /datum/game_mode/sandbox + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /datum/game_mode/wizard + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /datum/game_mode/gang + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /datum/map_config + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /datum/holiday/new_year + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /datum/holiday/groundhog + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /datum/holiday/valentines + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /datum/holiday/birthday + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /datum/holiday/random_kindness + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /datum/holiday/leap + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /datum/holiday/pi + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /datum/holiday/no_this_is_patrick + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /datum/holiday/april_fools + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /datum/holiday/fourtwenty + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /datum/holiday/tea + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /datum/holiday/earth + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /datum/holiday/labor + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /datum/holiday/firefighter + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /datum/holiday/bee + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /datum/holiday/summersolstice + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /datum/holiday/doctor + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /datum/holiday/UFO + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /datum/holiday/USA + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /datum/holiday/writer + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /datum/holiday/friendship + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /datum/holiday/beer + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /datum/holiday/pirate + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /datum/holiday/programmers + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /datum/holiday/questions + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /datum/holiday/smile + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /datum/holiday/boss + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /datum/holiday/halloween + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /datum/holiday/vegan + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /datum/holiday/kindness + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /datum/holiday/flowers + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /datum/holiday/hello + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /datum/holiday/human_rights + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /datum/holiday/monkey + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /datum/holiday/thanksgiving/canada + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /datum/holiday/thanksgiving + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /datum/holiday/columbus + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /datum/holiday/mother + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /datum/holiday/father + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /datum/holiday/moth + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /datum/holiday/ramadan/end + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /datum/holiday/ramadan + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /datum/holiday/doomsday + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /datum/holiday/xmas + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /datum/holiday/boxing + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /datum/holiday/friday_thirteenth + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /datum/holiday/easter + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /datum/species/human/felinid + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /datum/species/human + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /datum/species/jelly/roundstartslime + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /datum/species/lizard + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /datum/species/plasmaman + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /datum/species/mammal + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /datum/species/avian + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /datum/species/aquatic + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /datum/species/xeno + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /datum/species/ipc + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/effect/landmark/xmastree/rdrod + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/effect/spawner/lootdrop/aimodule_harmless + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/effect/spawner/lootdrop/aimodule_neutral + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/effect/spawner/lootdrop/aimodule_harmful + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/effect/spawner/lootdrop/techstorage/AI + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/effect/spawner/lootdrop/techstorage/rnd + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/effect/spawner/lootdrop/techstorage/service + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/effect/spawner/lootdrop/techstorage/tcomms + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/effect/spawner/lootdrop/techstorage/command + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/effect/spawner/lootdrop/techstorage/RnD_secure + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/effect/spawner/lootdrop/techstorage/medical + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/effect/spawner/lootdrop/techstorage/security + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/effect/spawner/lootdrop/techstorage/engineering + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/stack/ore/silver + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/stack/sheet/metal + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/effect/turf_decal/stripes/asteroid/line + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/effect/mob_spawn/human/corpse/assistant + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /turf/closed/mineral/diamond/volcanic + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/machinery/door/airlock/engineering/abandoned + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /datum/wires/airlock/engineering + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/effect/baseturf_helper/space + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/book/manual/random + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /turf/closed/wall/mineral/titanium/nodiagonal + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/docking_port/stationary/public_mining_dock + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /turf/closed/wall + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/storage/backpack/medic + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/pda/heads/cmo + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/cartridge/cmo + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/pen + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/stack/medical/plaster_gauze + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/reagent_containers/hypospray/medipen + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /datum/reagent/medicine/epinephrine + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/healthanalyzer + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /datum/hud + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/screen/movable/action_button/hide_toggle + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/screen/plane_master/floor + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/screen/plane_master/game_world + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/screen/plane_master/lighting + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/screen/plane_master/parallax + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/screen/plane_master/parallax_white + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/screen/plane_master/camera_static + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/effect/landmark/start/depsec/medical + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/effect/landmark/start/cyborg + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/effect/landmark/start/janitor + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/effect/landmark/start/cook + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/effect/landmark/start/chaplain + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/effect/landmark/start/head_of_security + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/effect/landmark/start/head_of_personnel + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/effect/landmark/start/virologist + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/effect/landmark/start/quartermaster + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/effect/landmark/start/mime + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/effect/landmark/start/captain + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/effect/landmark/start/research_director + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/effect/landmark/start/depsec/engineering + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/effect/landmark/start/chief_engineer + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/effect/landmark/start/clown + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/effect/landmark/start/detective + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/effect/landmark/start/depsec/science + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/effect/landmark/start/librarian + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/effect/landmark/start/chief_medical_officer + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/effect/landmark/start/warden + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/effect/landmark/start/depsec/supply + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /datum/controller + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/screen/splash + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/docking_port/stationary/transit + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/screen/fullscreen/flash + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /datum/status_effect/incapacitating/unconscious + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/machinery/light + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /datum/mood_event/jittery + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/structure/table/glass + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/machinery/light_switch + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/screen/fullscreen/crit/vision + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/screen/alert/lowpressure + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/item/stack/ore/glass + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /obj/effect/meteor/dust + - qdel() Count: 1 + - Destroy() Cost: 0ms + - Path: /datum/action/innate/augury + - qdel() Count: 1 + - Destroy() Cost: 0ms diff --git a/data/logs/2019/12/03/round-23.56.34/runtime.log b/data/logs/2019/12/03/round-23.56.34/runtime.log new file mode 100644 index 00000000..1865d5d5 --- /dev/null +++ b/data/logs/2019/12/03/round-23.56.34/runtime.log @@ -0,0 +1,133 @@ +[2019-12-04 04:56:34.968] Starting up round ID . + - ------------------------- +[2019-12-04 04:56:34.972] Running /tg/ revision: 2019-12-04 + - origin/master: 95e35dc714ec059af1ba4f6355f717d810b87fa6 + - HEAD: 2cbcd7d49519db45ac762495b8c325f79919db0e +[2019-12-04 04:56:36.096] Initialized Title Screen subsystem within 0 seconds! +[2019-12-04 04:56:36.099] Initialized Database subsystem within 0 seconds! +[2019-12-04 04:56:36.102] Initialized Blackbox subsystem within 0 seconds! +[2019-12-04 04:56:36.104] Initialized Server Tasks subsystem within 0 seconds! +[2019-12-04 04:56:36.106] Initialized Input subsystem within 0 seconds! +[2019-12-04 04:56:36.108] Initialized Vis contents overlays subsystem within 0 seconds! +[2019-12-04 04:56:36.129] Initialized Research subsystem within 0 seconds! +[2019-12-04 04:56:36.135] Initialized Events subsystem within 0 seconds! +[2019-12-04 04:56:36.141] Initialized Jobs subsystem within 0 seconds! +[2019-12-04 04:56:36.143] Initialized Quirks subsystem within 0 seconds! +[2019-12-04 04:56:36.153] Initialized Ticker subsystem within 0 seconds! +[2019-12-04 04:56:36.156] Loading Box Station... +[2019-12-04 04:56:41.365] Loaded Station in 5.2s! +[2019-12-04 04:56:42.518] Loaded Lavaland in 1.1s! +[2019-12-04 04:56:43.438] Ruin loader finished with 0 left to spend. +[2019-12-04 04:56:48.502] Failed to place Syndicate Ambush ruin. +[2019-12-04 04:56:48.721] Ruin loader finished with 0 left to spend. +[2019-12-04 04:56:48.960] Initialized Mapping subsystem within 12.8 seconds! +[2019-12-04 04:56:48.964] Initialized Networks subsystem within 0 seconds! +[2019-12-04 04:56:52.696] ### MAP WARNING, the airlock cyclelink helper at Brig (119, 168, 2) tried to set Brig cyclelinkeddir, but it's already set! +[2019-12-04 04:56:52.738] ### MAP WARNING, the airlock cyclelink helper at Brig (119, 165, 2) tried to set Brig cyclelinkeddir, but it's already set! +[2019-12-04 04:57:07.080] Initialized Atoms subsystem within 18.1 seconds! +[2019-12-04 04:57:07.130] Initialized Language subsystem within 0 seconds! +[2019-12-04 04:57:07.284] Initialized Machines subsystem within 0.1 seconds! +[2019-12-04 04:57:07.321] Initialized Circuit subsystem within 0.1 seconds! +[2019-12-04 04:57:07.324] Initialized Disease subsystem within 0 seconds! +[2019-12-04 04:57:07.325] Initialized Jukeboxes subsystem within 0 seconds! +[2019-12-04 04:57:07.328] Initialized Medals subsystem within 0 seconds! +[2019-12-04 04:57:07.329] Initialized Processing subsystem within 0 seconds! +[2019-12-04 04:57:07.330] Initialized Night Shift subsystem within 0 seconds! +[2019-12-04 04:57:07.332] Initialized Parallax subsystem within 0 seconds! +[2019-12-04 04:57:07.526] Initialized Traumas subsystem within 0.2 seconds! +[2019-12-04 04:57:07.528] Initialized Weather subsystem within 0 seconds! +[2019-12-04 04:57:09.561] ## WARNING: There are 83 active turfs at roundstart, this is a mapping error caused by a difference of the air between the adjacent turfs. You can see its coordinates using "Mapping -> Show roundstart AT list" verb (debug verbs required) +[2019-12-04 04:57:10.236] ## WARNING: HEY! LISTEN! 0.7 seconds were wasted processing 83 turf(s) (connected to 20941 other turfs) with atmos differences at round start. +[2019-12-04 04:57:10.470] ## WARNING: build_pipeline(): /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden added to a pipenet while still having one. (pipes leading to the same spot stacking in one turf) Nearby: (159, 121, 2) +[2019-12-04 04:57:10.472] ## WARNING: build_pipeline(): /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden added to a pipenet while still having one. (pipes leading to the same spot stacking in one turf) Nearby: (157, 121, 2) +[2019-12-04 04:57:10.473] ## WARNING: build_pipeline(): /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden added to a pipenet while still having one. (pipes leading to the same spot stacking in one turf) Nearby: (160, 121, 2) +[2019-12-04 04:57:10.474] ## WARNING: build_pipeline(): /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden added to a pipenet while still having one. (pipes leading to the same spot stacking in one turf) Nearby: (158, 121, 2) +[2019-12-04 04:57:10.476] ## WARNING: build_pipeline(): /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden added to a pipenet while still having one. (pipes leading to the same spot stacking in one turf) Nearby: (156, 121, 2) +[2019-12-04 04:57:10.477] ## WARNING: build_pipeline(): /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden added to a pipenet while still having one. (pipes leading to the same spot stacking in one turf) Nearby: (161, 121, 2) +[2019-12-04 04:57:10.478] ## WARNING: build_pipeline(): /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden added to a pipenet while still having one. (pipes leading to the same spot stacking in one turf) Nearby: (155, 121, 2) +[2019-12-04 04:57:10.480] ## WARNING: build_pipeline(): /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden added to a pipenet while still having one. (pipes leading to the same spot stacking in one turf) Nearby: (162, 121, 2) +[2019-12-04 04:57:10.482] ## WARNING: build_pipeline(): /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden added to a pipenet while still having one. (pipes leading to the same spot stacking in one turf) Nearby: (154, 121, 2) +[2019-12-04 04:57:10.485] ## WARNING: build_pipeline(): /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden added to a pipenet while still having one. (pipes leading to the same spot stacking in one turf) Nearby: (163, 121, 2) +[2019-12-04 04:57:10.487] ## WARNING: build_pipeline(): further messages about pipenets will be suppressed +[2019-12-04 04:57:10.510] Initialized Atmospherics subsystem within 3 seconds! +[2019-12-04 04:57:10.512] Initialized Atmospherics - Turfs subsystem within 0 seconds! +[2019-12-04 04:57:12.464] Initialized Assets subsystem within 1.9 seconds! +[2019-12-04 04:57:15.705] Initialized Icon Smoothing subsystem within 3.3 seconds! +[2019-12-04 04:57:16.304] Initialized Overlay subsystem within 0.6 seconds! +[2019-12-04 04:57:16.305] Initialized XKeyScore subsystem within 0 seconds! +[2019-12-04 04:57:16.308] Initialized Sticky Ban subsystem within 0 seconds! +[2019-12-04 04:57:22.552] Initialized Lighting subsystem within 6.2 seconds! +[2019-12-04 04:57:24.145] Initialized Shuttle subsystem within 1.6 seconds! +[2019-12-04 04:57:24.190] Initialized Minor Mapping subsystem within 0 seconds! +[2019-12-04 04:57:24.193] Initialized Pathfinder subsystem within 0 seconds! +[2019-12-04 04:57:24.230] Initialized Persistence subsystem within 0.1 seconds! +[2019-12-04 04:57:24.248] Initializations complete within 48.2 seconds! +[2019-12-04 04:57:26.626] Game start took 0.8s +[2019-12-04 05:12:34.529] Shutting down Persistence subsystem... +[2019-12-04 05:12:34.531] Shutting down Pathfinder subsystem... +[2019-12-04 05:12:34.533] Shutting down Minor Mapping subsystem... +[2019-12-04 05:12:34.535] Shutting down Shuttle subsystem... +[2019-12-04 05:12:34.537] Shutting down Lighting subsystem... +[2019-12-04 05:12:34.541] Shutting down XKeyScore subsystem... +[2019-12-04 05:12:34.542] Shutting down Sticky Ban subsystem... +[2019-12-04 05:12:34.544] Shutting down Overlay subsystem... +[2019-12-04 05:12:34.569] Shutting down Icon Smoothing subsystem... +[2019-12-04 05:12:34.572] Shutting down Assets subsystem... +[2019-12-04 05:12:34.574] Shutting down Atmospherics - Turfs subsystem... +[2019-12-04 05:12:34.576] Shutting down Atmospherics subsystem... +[2019-12-04 05:12:34.578] Shutting down Wet floors subsystem... +[2019-12-04 05:12:34.579] Shutting down Weather subsystem... +[2019-12-04 05:12:34.581] Shutting down Vote subsystem... +[2019-12-04 05:12:34.583] Shutting down Traumas subsystem... +[2019-12-04 05:12:34.586] Shutting down Time Tracking subsystem... +[2019-12-04 05:12:34.590] Shutting down Throwing subsystem... +[2019-12-04 05:12:34.591] Shutting down tgui subsystem... +[2019-12-04 05:12:34.593] Shutting down Sun subsystem... +[2019-12-04 05:12:34.595] Shutting down Space Drift subsystem... +[2019-12-04 05:12:34.596] Shutting down Radio subsystem... +[2019-12-04 05:12:34.598] Shutting down Radiation subsystem... +[2019-12-04 05:12:34.599] Shutting down Projectiles subsystem... +[2019-12-04 05:12:34.601] Shutting down Processing subsystem... +[2019-12-04 05:12:34.602] Shutting down Processing subsystem... +[2019-12-04 05:12:34.604] Shutting down Ping subsystem... +[2019-12-04 05:12:34.607] Shutting down Parallax subsystem... +[2019-12-04 05:12:34.608] Shutting down pAI subsystem... +[2019-12-04 05:12:34.610] Shutting down Objects subsystem... +[2019-12-04 05:12:34.612] Shutting down NPC Pool subsystem... +[2019-12-04 05:12:34.614] Shutting down Night Shift subsystem... +[2019-12-04 05:12:34.615] Shutting down Nanites subsystem... +[2019-12-04 05:12:34.617] Shutting down Mood subsystem... +[2019-12-04 05:12:34.619] Shutting down Mobs subsystem... +[2019-12-04 05:12:34.621] Shutting down Medals subsystem... +[2019-12-04 05:12:34.623] Shutting down Jukeboxes subsystem... +[2019-12-04 05:12:34.626] Shutting down Idling NPC Pool subsystem... +[2019-12-04 05:12:34.627] Shutting down Fire Burning subsystem... +[2019-12-04 05:12:34.629] Shutting down Fields subsystem... +[2019-12-04 05:12:34.630] Shutting down Fast Processing subsystem... +[2019-12-04 05:12:34.632] Shutting down Disease subsystem... +[2019-12-04 05:12:34.633] Shutting down Datum Component System subsystem... +[2019-12-04 05:12:34.635] Shutting down Communications subsystem... +[2019-12-04 05:12:34.637] Shutting down Bellies subsystem... +[2019-12-04 05:12:34.640] Shutting down Augury subsystem... +[2019-12-04 05:12:34.641] Shutting down Acid subsystem... +[2019-12-04 05:12:34.643] Shutting down Timer subsystem... +[2019-12-04 05:12:34.645] Shutting down Circuit subsystem... +[2019-12-04 05:12:34.646] Shutting down Machines subsystem... +[2019-12-04 05:12:34.648] Shutting down Language subsystem... +[2019-12-04 05:12:34.650] Shutting down Atoms subsystem... +[2019-12-04 05:12:34.747] Shutting down Networks subsystem... +[2019-12-04 05:12:34.750] Shutting down Mapping subsystem... +[2019-12-04 05:12:34.751] Shutting down Ticker subsystem... +[2019-12-04 05:12:34.753] Shutting down Quirks subsystem... +[2019-12-04 05:12:34.757] Shutting down Jobs subsystem... +[2019-12-04 05:12:34.758] Shutting down Events subsystem... +[2019-12-04 05:12:34.761] Shutting down Research subsystem... +[2019-12-04 05:12:34.762] Shutting down Vis contents overlays subsystem... +[2019-12-04 05:12:34.763] Shutting down Input subsystem... +[2019-12-04 05:12:34.766] Shutting down Server Tasks subsystem... +[2019-12-04 05:12:34.767] Shutting down Blackbox subsystem... +[2019-12-04 05:12:34.769] Shutting down Database subsystem... +[2019-12-04 05:12:34.770] Shutting down Garbage subsystem... +[2019-12-04 05:12:34.861] Shutting down Title Screen subsystem... +[2019-12-04 05:12:34.863] Shutdown complete +[2019-12-04 05:12:34.865] World rebooted at 00:12:34 diff --git a/data/logs/2019/12/03/round-23.56.34/singulo.html b/data/logs/2019/12/03/round-23.56.34/singulo.html new file mode 100644 index 00000000..f29b24cd --- /dev/null +++ b/data/logs/2019/12/03/round-23.56.34/singulo.html @@ -0,0 +1,10 @@ +23:57:27 [0x200ae0a] (102,125,3) || the backup power storage unit lost power and turned off
+23:57:27 [0x200adc2] (101,130,3) || the power storage unit lost power and turned off
+23:57:27 [0x200adb4] (101,134,3) || the power storage unit lost power and turned off
+23:57:27 [0x20093fd] (196,79,2) || the power storage unit lost power and turned off
+23:57:27 [0x20090a2] (77,82,2) || the power storage unit lost power and turned off
+23:57:27 [0x2005b2b] (186,151,2) || the power storage unit lost power and turned off
+23:57:27 [0x2005b21] (180,151,2) || the power storage unit lost power and turned off
+23:57:27 [0x200545f] (162,161,2) || the power storage unit lost power and turned off
+23:57:27 [0x20052ec] (65,164,2) || the power storage unit lost power and turned off
+23:57:36 [0x2009056] (151,83,2) || the power storage unit lost power and turned off
diff --git a/data/logs/2019/12/03/round-23.56.34/supermatter.html b/data/logs/2019/12/03/round-23.56.34/supermatter.html new file mode 100644 index 00000000..fa0943e9 --- /dev/null +++ b/data/logs/2019/12/03/round-23.56.34/supermatter.html @@ -0,0 +1 @@ +23:56:55 [0x2009ada] (113,66,2) || the supermatter crystal has been created.
diff --git a/data/logs/2019/12/03/round-23.56.34/telecomms.log b/data/logs/2019/12/03/round-23.56.34/telecomms.log new file mode 100644 index 00000000..b8a201b1 --- /dev/null +++ b/data/logs/2019/12/03/round-23.56.34/telecomms.log @@ -0,0 +1,37 @@ +[2019-12-04 04:56:34.964] Starting up round ID . + - ------------------------- +[2019-12-04 04:57:33.517] TCOMMS: The �Automated Announcement System [Medical] (spans: robot ) "Alessandra Joghs, Chief Medical Officer, is the department head." (language: Galactic Common) (Telecomms Control Room (107, 93, 2)) +[2019-12-04 04:57:54.929] TCOMMS: *no key*/(Poly) [Engineering] (spans: ) "Check the crystal, you chucklefucks!" (language: Galactic Common) (Chief Engineer's Office (117, 82, 2)) +[2019-12-04 04:58:02.960] TCOMMS: *no key*/(Poly) [Engineering] (spans: ) "Wire the solars, you lazy bums!" (language: Galactic Common) (Chief Engineer's Office (118, 82, 2)) +[2019-12-04 04:58:12.932] TCOMMS: *no key*/(Poly) [Engineering] (spans: ) "WHO TOOK THE DAMN HARDSUITS?" (language: Galactic Common) (Chief Engineer's Office (118, 80, 2)) +[2019-12-04 04:58:20.935] TCOMMS: *no key*/(Poly) [Engineering] (spans: ) "WHO TOOK THE DAMN HARDSUITS?" (language: Galactic Common) (Chief Engineer's Office (117, 80, 2)) +[2019-12-04 04:58:22.933] TCOMMS: *no key*/(Poly) [Engineering] (spans: ) "WHO TOOK THE DAMN HARDSUITS?" (language: Galactic Common) (Chief Engineer's Office (117, 80, 2)) +[2019-12-04 04:58:52.929] TCOMMS: *no key*/(Poly) [Engineering] (spans: ) "WHO TOOK THE DAMN HARDSUITS?" (language: Galactic Common) (Chief Engineer's Office (115, 79, 2)) +[2019-12-04 04:59:18.931] TCOMMS: *no key*/(Poly) [Engineering] (spans: ) "OH GOD ITS ABOUT TO DELAMINATE CALL THE SHUTTLE" (language: Galactic Common) (Chief Engineer's Office (115, 79, 2)) +[2019-12-04 04:59:34.341] TCOMMS: The cloning pod [Medical] (spans: robot ) "The cloning cycle is complete." (language: Galactic Common) (Genetics Lab (155, 113, 2)) +[2019-12-04 05:01:16.931] TCOMMS: *no key*/(Poly) [Engineering] (spans: ) "Check the crystal, you chucklefucks!" (language: Galactic Common) (Chief Engineer's Office (115, 79, 2)) +[2019-12-04 05:01:36.937] TCOMMS: *no key*/(Poly) [Engineering] (spans: ) "Check the crystal, you chucklefucks!" (language: Galactic Common) (Chief Engineer's Office (115, 79, 2)) +[2019-12-04 05:01:46.938] TCOMMS: *no key*/(Poly) [Engineering] (spans: ) "Wire the solars, you lazy bums!" (language: Galactic Common) (Chief Engineer's Office (115, 79, 2)) +[2019-12-04 05:02:14.931] TCOMMS: *no key*/(Poly) [Engineering] (spans: ) "OH GOD ITS ABOUT TO DELAMINATE CALL THE SHUTTLE" (language: Galactic Common) (Chief Engineer's Office (117, 81, 2)) +[2019-12-04 05:02:16.928] TCOMMS: *no key*/(Poly) [Engineering] (spans: ) "OH GOD ITS ABOUT TO DELAMINATE CALL THE SHUTTLE" (language: Galactic Common) (Chief Engineer's Office (117, 81, 2)) +[2019-12-04 05:02:22.932] TCOMMS: *no key*/(Poly) [Engineering] (spans: ) "Wire the solars, you lazy bums!" (language: Galactic Common) (Chief Engineer's Office (115, 79, 2)) +[2019-12-04 05:02:28.929] TCOMMS: *no key*/(Poly) [Engineering] (spans: ) "Wire the solars, you lazy bums!" (language: Galactic Common) (Chief Engineer's Office (115, 79, 2)) +[2019-12-04 05:02:44.929] TCOMMS: *no key*/(Poly) [Engineering] (spans: ) "Wire the solars, you lazy bums!" (language: Galactic Common) (Chief Engineer's Office (115, 79, 2)) +[2019-12-04 05:02:46.930] TCOMMS: *no key*/(Poly) [Engineering] (spans: ) "OH GOD ITS ABOUT TO DELAMINATE CALL THE SHUTTLE" (language: Galactic Common) (Chief Engineer's Office (115, 79, 2)) +[2019-12-04 05:02:54.930] TCOMMS: *no key*/(Poly) [Engineering] (spans: ) "OH GOD ITS ABOUT TO DELAMINATE CALL THE SHUTTLE" (language: Galactic Common) (Chief Engineer's Office (115, 79, 2)) +[2019-12-04 05:03:18.932] TCOMMS: *no key*/(Poly) [Engineering] (spans: ) "Check the crystal, you chucklefucks!" (language: Galactic Common) (Chief Engineer's Office (116, 80, 2)) +[2019-12-04 05:04:34.930] TCOMMS: *no key*/(Poly) [Engineering] (spans: ) "Poly wanna cracker!" (language: Galactic Common) (Chief Engineer's Office (118, 80, 2)) +[2019-12-04 05:04:52.928] TCOMMS: *no key*/(Poly) [Engineering] (spans: ) "I have lived many lives!" (language: Galactic Common) (Chief Engineer's Office (118, 79, 2)) +[2019-12-04 05:05:08.930] TCOMMS: *no key*/(Poly) [Engineering] (spans: ) "Poly wanna cracker!" (language: Galactic Common) (Chief Engineer's Office (118, 79, 2)) +[2019-12-04 05:07:54.940] TCOMMS: *no key*/(Poly) [Engineering] (spans: ) "OH GOD ITS ABOUT TO DELAMINATE CALL THE SHUTTLE" (language: Galactic Common) (Chief Engineer's Office (116, 79, 2)) +[2019-12-04 05:07:56.957] TCOMMS: *no key*/(Poly) [Engineering] (spans: ) "OH GOD ITS ABOUT TO DELAMINATE CALL THE SHUTTLE" (language: Galactic Common) (Chief Engineer's Office (116, 79, 2)) +[2019-12-04 05:07:58.942] TCOMMS: *no key*/(Poly) [Engineering] (spans: ) "OH GOD ITS ABOUT TO DELAMINATE CALL THE SHUTTLE" (language: Galactic Common) (Chief Engineer's Office (116, 79, 2)) +[2019-12-04 05:09:34.942] TCOMMS: *no key*/(Poly) [Engineering] (spans: ) "Wire the solars, you lazy bums!" (language: Galactic Common) (Chief Engineer's Office (115, 79, 2)) +[2019-12-04 05:10:14.942] TCOMMS: *no key*/(Poly) [Engineering] (spans: ) "Check the crystal, you chucklefucks!" (language: Galactic Common) (Chief Engineer's Office (115, 79, 2)) +[2019-12-04 05:10:20.945] TCOMMS: *no key*/(Poly) [Engineering] (spans: ) "OH GOD ITS ABOUT TO DELAMINATE CALL THE SHUTTLE" (language: Galactic Common) (Chief Engineer's Office (116, 79, 2)) +[2019-12-04 05:10:36.940] TCOMMS: *no key*/(Poly) [Engineering] (spans: ) "Check the crystal, you chucklefucks!" (language: Galactic Common) (Chief Engineer's Office (115, 79, 2)) +[2019-12-04 05:10:58.942] TCOMMS: *no key*/(Poly) [Engineering] (spans: ) "OH GOD ITS ABOUT TO DELAMINATE CALL THE SHUTTLE" (language: Galactic Common) (Chief Engineer's Office (115, 79, 2)) +[2019-12-04 05:11:08.943] TCOMMS: *no key*/(Poly) [Engineering] (spans: ) "OH GOD ITS ABOUT TO DELAMINATE CALL THE SHUTTLE" (language: Galactic Common) (Chief Engineer's Office (115, 79, 2)) +[2019-12-04 05:11:18.940] TCOMMS: *no key*/(Poly) [Engineering] (spans: ) "Check the crystal, you chucklefucks!" (language: Galactic Common) (Chief Engineer's Office (115, 79, 2)) +[2019-12-04 05:11:44.941] TCOMMS: *no key*/(Poly) [Engineering] (spans: ) "I have lived many lives!" (language: Galactic Common) (Chief Engineer's Office (117, 82, 2)) +[2019-12-04 05:12:18.944] TCOMMS: *no key*/(Poly) [Engineering] (spans: ) "I have lived many lives!" (language: Galactic Common) (Chief Engineer's Office (115, 79, 2)) diff --git a/data/logs/2019/12/04/round-00.12.46/attack.log b/data/logs/2019/12/04/round-00.12.46/attack.log new file mode 100644 index 00000000..2139c356 --- /dev/null +++ b/data/logs/2019/12/04/round-00.12.46/attack.log @@ -0,0 +1,4 @@ +[2019-12-04 05:12:46.878] Starting up round ID . + - ------------------------- +[2019-12-04 05:21:09.602] ATTACK: BigFatAnimeTiddies/(Alessandra Joghs) has grabbed *no key*/(monkey (632)) passive grab (NEWHP: 100) (Genetics Lab (160, 118, 2)) +[2019-12-04 05:21:28.832] ATTACK: BigFatAnimeTiddies/(Alessandra Joghs) has grabbed *no key*/(Kira Agg) passive grab (NEWHP: 100) (Genetics Lab (158, 116, 2)) diff --git a/data/logs/2019/12/04/round-00.12.46/cargo.html b/data/logs/2019/12/04/round-00.12.46/cargo.html new file mode 100644 index 00000000..6d8dcf0f --- /dev/null +++ b/data/logs/2019/12/04/round-00.12.46/cargo.html @@ -0,0 +1 @@ +00:13:27 [0x2025489] (152,108,1) || the supply shuttle Shuttle contents sold for 0 credits. Contents: /list Message: none.
diff --git a/data/logs/2019/12/04/round-00.12.46/cloning.log b/data/logs/2019/12/04/round-00.12.46/cloning.log new file mode 100644 index 00000000..c0a80f04 --- /dev/null +++ b/data/logs/2019/12/04/round-00.12.46/cloning.log @@ -0,0 +1,36 @@ +[2019-12-04 05:16:18.078] CLONING: Autoprocess added the record of BigFatAnimeTiddies/(Alessandra Joghs) to the cloning console at Genetics Lab (154, 113, 2). +[2019-12-04 05:16:20.062] CLONING: Autoprocess added the record of BigFatAnimeTiddies/(Alessandra Joghs) to the cloning console at Genetics Lab (154, 113, 2). +[2019-12-04 05:16:22.078] CLONING: Autoprocess added the record of BigFatAnimeTiddies/(Alessandra Joghs) to the cloning console at Genetics Lab (154, 113, 2). +[2019-12-04 05:16:24.080] CLONING: Autoprocess added the record of BigFatAnimeTiddies/(Alessandra Joghs) to the cloning console at Genetics Lab (154, 113, 2). +[2019-12-04 05:16:26.076] CLONING: Autoprocess added the record of BigFatAnimeTiddies/(Alessandra Joghs) to the cloning console at Genetics Lab (154, 113, 2). +[2019-12-04 05:16:28.062] CLONING: Autoprocess added the record of BigFatAnimeTiddies/(Alessandra Joghs) to the cloning console at Genetics Lab (154, 113, 2). +[2019-12-04 05:16:30.078] CLONING: Autoprocess added the record of BigFatAnimeTiddies/(Alessandra Joghs) to the cloning console at Genetics Lab (154, 113, 2). +[2019-12-04 05:16:32.075] CLONING: Autoprocess added the record of BigFatAnimeTiddies/(Alessandra Joghs) to the cloning console at Genetics Lab (154, 113, 2). +[2019-12-04 05:16:34.063] CLONING: Autoprocess added the record of BigFatAnimeTiddies/(Alessandra Joghs) to the cloning console at Genetics Lab (154, 113, 2). +[2019-12-04 05:16:36.076] CLONING: Autoprocess added the record of BigFatAnimeTiddies/(Alessandra Joghs) to the cloning console at Genetics Lab (154, 113, 2). +[2019-12-04 05:16:38.075] CLONING: Autoprocess added the record of BigFatAnimeTiddies/(Alessandra Joghs) to the cloning console at Genetics Lab (154, 113, 2). +[2019-12-04 05:16:40.077] CLONING: Autoprocess added the record of BigFatAnimeTiddies/(Alessandra Joghs) to the cloning console at Genetics Lab (154, 113, 2). +[2019-12-04 05:16:42.077] CLONING: Autoprocess added the record of BigFatAnimeTiddies/(Alessandra Joghs) to the cloning console at Genetics Lab (154, 113, 2). +[2019-12-04 05:16:44.076] CLONING: Autoprocess added the record of BigFatAnimeTiddies/(Alessandra Joghs) to the cloning console at Genetics Lab (154, 113, 2). +[2019-12-04 05:16:46.076] CLONING: Autoprocess added the record of BigFatAnimeTiddies/(Alessandra Joghs) to the cloning console at Genetics Lab (154, 113, 2). +[2019-12-04 05:16:48.063] CLONING: Autoprocess added the record of BigFatAnimeTiddies/(Alessandra Joghs) to the cloning console at Genetics Lab (154, 113, 2). +[2019-12-04 05:16:50.076] CLONING: Autoprocess added the record of BigFatAnimeTiddies/(Alessandra Joghs) to the cloning console at Genetics Lab (154, 113, 2). +[2019-12-04 05:16:52.077] CLONING: Autoprocess added the record of BigFatAnimeTiddies/(Alessandra Joghs) to the cloning console at Genetics Lab (154, 113, 2). +[2019-12-04 05:16:54.062] CLONING: Autoprocess added the record of BigFatAnimeTiddies/(Alessandra Joghs) to the cloning console at Genetics Lab (154, 113, 2). +[2019-12-04 05:16:56.062] CLONING: Autoprocess added the record of BigFatAnimeTiddies/(Alessandra Joghs) to the cloning console at Genetics Lab (154, 113, 2). +[2019-12-04 05:16:58.080] CLONING: Autoprocess added the record of BigFatAnimeTiddies/(Alessandra Joghs) to the cloning console at Genetics Lab (154, 113, 2). +[2019-12-04 05:17:00.077] CLONING: Autoprocess added the record of BigFatAnimeTiddies/(Alessandra Joghs) to the cloning console at Genetics Lab (154, 113, 2). +[2019-12-04 05:17:02.077] CLONING: Autoprocess added the record of BigFatAnimeTiddies/(Alessandra Joghs) to the cloning console at Genetics Lab (154, 113, 2). +[2019-12-04 05:17:04.062] CLONING: Autoprocess added the record of BigFatAnimeTiddies/(Alessandra Joghs) to the cloning console at Genetics Lab (154, 113, 2). +[2019-12-04 05:17:06.076] CLONING: Autoprocess added the record of BigFatAnimeTiddies/(Alessandra Joghs) to the cloning console at Genetics Lab (154, 113, 2). +[2019-12-04 05:17:08.076] CLONING: Autoprocess added the record of BigFatAnimeTiddies/(Alessandra Joghs) to the cloning console at Genetics Lab (154, 113, 2). +[2019-12-04 05:17:10.064] CLONING: Autoprocess added the record of BigFatAnimeTiddies/(Alessandra Joghs) to the cloning console at Genetics Lab (154, 113, 2). +[2019-12-04 05:17:12.062] CLONING: Autoprocess added the record of BigFatAnimeTiddies/(Alessandra Joghs) to the cloning console at Genetics Lab (154, 113, 2). +[2019-12-04 05:17:14.063] CLONING: Autoprocess added the record of BigFatAnimeTiddies/(Alessandra Joghs) to the cloning console at Genetics Lab (154, 113, 2). +[2019-12-04 05:17:16.076] CLONING: Autoprocess added the record of BigFatAnimeTiddies/(Alessandra Joghs) to the cloning console at Genetics Lab (154, 113, 2). +[2019-12-04 05:17:18.077] CLONING: Autoprocess added the record of BigFatAnimeTiddies/(Alessandra Joghs) to the cloning console at Genetics Lab (154, 113, 2). +[2019-12-04 05:17:20.075] CLONING: Autoprocess added the record of BigFatAnimeTiddies/(Alessandra Joghs) to the cloning console at Genetics Lab (154, 113, 2). +[2019-12-04 05:17:22.062] CLONING: Autoprocess added the record of BigFatAnimeTiddies/(Alessandra Joghs) to the cloning console at Genetics Lab (154, 113, 2). +[2019-12-04 05:21:44.173] CLONING: BigFatAnimeTiddies/(Alessandra Joghs) added the body-only record of *no key*/(Kira Agg) to the cloning console at Genetics Lab (154, 113, 2). +[2019-12-04 05:21:50.331] CLONING: BigFatAnimeTiddies/(Alessandra Joghs) initiated EMPTY cloning of [0x0][DC] via the cloning console at Genetics Lab (154, 113, 2). Pod: the cloning pod at Genetics Lab (155, 113, 2). +[2019-12-04 05:23:08.091] CLONING: *no key*/(Kira Agg) completed cloning cycle in the cloning pod at Genetics Lab (155, 113, 2). diff --git a/data/logs/2019/12/04/round-00.12.46/config_error.log b/data/logs/2019/12/04/round-00.12.46/config_error.log new file mode 100644 index 00000000..5fc92c1a --- /dev/null +++ b/data/logs/2019/12/04/round-00.12.46/config_error.log @@ -0,0 +1,12 @@ +[2019-12-04 05:12:46.842] Running /tg/ revision: 2019-12-04 + - origin/master: 95e35dc714ec059af1ba4f6355f717d810b87fa6 + - HEAD: 2cbcd7d49519db45ac762495b8c325f79919db0e +[2019-12-04 05:12:46.849] Loading config file config.txt... +[2019-12-04 05:12:46.851] Loading config file game_options.txt... +[2019-12-04 05:12:46.855] Failed to validate setting "WEREWOLF 1" for probability +[2019-12-04 05:12:46.860] Loading config file dbconfig.txt... +[2019-12-04 05:12:46.862] Loading config file comms.txt... +[2019-12-04 05:12:46.864] Loading config file antag_rep.txt... +[2019-12-04 05:12:46.866] Loading config file donator_groupings.txt... +[2019-12-04 05:12:46.870] Loading config file maps.txt... +[2019-12-04 05:12:46.876] SQL: Database is not enabled in configuration. diff --git a/data/logs/2019/12/04/round-00.12.46/game.log b/data/logs/2019/12/04/round-00.12.46/game.log new file mode 100644 index 00000000..8e055552 --- /dev/null +++ b/data/logs/2019/12/04/round-00.12.46/game.log @@ -0,0 +1,257 @@ +[2019-12-04 05:12:46.877] Starting up round ID . + - ------------------------- +[2019-12-04 05:12:46.915] ADMIN: Loading Banlist +[2019-12-04 05:12:47.181] ACCESS: Login: BigFatAnimeTiddies from 127.0.0.1-3498261404 || BYOND v512.1463 +[2019-12-04 05:12:47.182] ACCESS: Mob Login: BigFatAnimeTiddies/(BigFatAnimeTiddies) was assigned to a /mob/dead/new_player +[2019-12-04 05:12:47.872] GAME: BigFatAnimeTiddies/(BigFatAnimeTiddies) Client BigFatAnimeTiddies/(BigFatAnimeTiddies) has taken ownership of mob BigFatAnimeTiddies(/mob/dead/new_player) (start area (11, 174, 1)) +[2019-12-04 05:12:47.990] GAME: Saved mode is 'extended' +[2019-12-04 05:12:55.052] GAME: Hierophant's Arena loaded at at 202,76,4 +[2019-12-04 05:12:55.075] GAME: Ruined Pizza Party loaded at at 108,60,4 +[2019-12-04 05:12:55.126] GAME: Ash Walker Nest loaded at at 193,27,4 +[2019-12-04 05:12:55.142] GAME: Makeshift Shelter loaded at at 130,109,4 +[2019-12-04 05:12:55.169] GAME: The Wishgranter Cube loaded at at 94,103,4 +[2019-12-04 05:12:55.185] GAME: Summoning Ritual loaded at at 64,119,4 +[2019-12-04 05:12:55.190] GAME: Ripley loaded at at 27,169,4 +[2019-12-04 05:12:55.472] GAME: CF Corsair loaded at at 73,34,3 +[2019-12-04 05:12:55.508] GAME: Space Arcade loaded at at 160,131,3 +[2019-12-04 05:12:55.538] GAME: Ancient Cloning Lab loaded at at 41,161,3 +[2019-12-04 05:12:55.802] GAME: Ancient Space Station loaded at at 115,43,3 +[2019-12-04 05:12:55.808] GAME: Ordinary Space Tile loaded at at 131,40,3 +[2019-12-04 05:12:55.832] GAME: Dinner for Two loaded at at 55,80,3 +[2019-12-04 05:12:55.857] GAME: Detached Teleporter loaded at at 150,221,3 +[2019-12-04 05:12:55.906] GAME: Gondoland loaded at at 175,181,3 +[2019-12-04 05:12:55.926] GAME: Asteroid 1 loaded at at 159,156,3 +[2019-12-04 05:12:55.971] GAME: Roboticst Augmentation Facility loaded at at 48,50,3 +[2019-12-04 05:12:56.007] GAME: Derelict 6 loaded at at 62,212,3 +[2019-12-04 05:12:56.128] GAME: Syndicate Ambush loaded at at 54,102,3 +[2019-12-04 05:12:56.156] GAME: Authorship loaded at at 38,102,3 +[2019-12-04 05:12:56.190] GAME: Unnamed Turreted Outpost loaded at at 35,24,3 +[2019-12-04 05:12:56.223] GAME: Derelict 1 loaded at at 89,152,3 +[2019-12-04 05:12:56.254] GAME: Aesthetic Outpost loaded at at 208,140,3 +[2019-12-04 05:13:03.443] GAME: [�APLU "Miner"] �APLU "Miner" created. (Lavaland Wastes (29, 171, 4)) +[2019-12-04 05:13:03.443] GAME: [�APLU "Miner"] 217-D Heavy Plasma Cutter initialized. (Lavaland Wastes (29, 171, 4)) +[2019-12-04 05:13:03.443] GAME: [�APLU "Miner"] The hydraulic clamp initialized. (Lavaland Wastes (29, 171, 4)) +[2019-12-04 05:13:03.444] GAME: [�APLU "Miner"] The exosuit mining scanner initialized. (Lavaland Wastes (29, 171, 4)) +[2019-12-04 05:13:03.456] GAME: [�APLU MK-I "Ripley"] �APLU MK-I "Ripley" created. (Mech Transport (80, 43, 3)) +[2019-12-04 05:13:26.785] GAME: Backup Shuttle loaded at at 84,206,1 +[2019-12-04 05:13:26.852] GAME: assault pod (Default) loaded at at 85,207,1 +[2019-12-04 05:13:27.104] GAME: basic syndicate infiltrator loaded at at 80,199,1 +[2019-12-04 05:13:27.401] GAME: fancy transport ferry loaded at at 82,208,1 +[2019-12-04 05:13:27.544] GAME: Box Station Emergency Shuttle loaded at at 83,199,1 +[2019-12-04 05:13:27.710] GAME: cargo ferry (Box) loaded at at 85,204,1 +[2019-12-04 05:13:27.886] GAME: escape pod (Default) loaded at at 87,208,1 +[2019-12-04 05:13:27.920] GAME: labour shuttle (Box) loaded at at 86,206,1 +[2019-12-04 05:13:27.986] GAME: auxilliary base (Default) loaded at at 84,206,1 +[2019-12-04 05:13:28.028] GAME: escape pod (Default) loaded at at 87,208,1 +[2019-12-04 05:13:28.101] GAME: arrival shuttle (Box) loaded at at 81,207,1 +[2019-12-04 05:13:28.169] GAME: escape pod (Default) loaded at at 87,208,1 +[2019-12-04 05:13:28.198] GAME: mining shuttle (Box) loaded at at 86,207,1 +[2019-12-04 05:13:28.231] GAME: escape pod (Default) loaded at at 87,208,1 +[2019-12-04 05:13:28.274] GAME: Syndicate Fighter loaded at at 86,206,1 +[2019-12-04 05:13:28.538] GAME: Small Freighter loaded at at 78,205,1 +[2019-12-04 05:13:28.893] GAME: Pirate Cutter loaded at at 77,204,1 +[2019-12-04 05:13:29.145] GAME: Syndicate Dropship loaded at at 81,207,1 +[2019-12-04 05:13:29.310] VOTE: Roundtype vote started by server. +[2019-12-04 05:13:41.561] ADMIN: BigFatAnimeTiddies has started the game. +[2019-12-04 05:13:47.418] GAME: *no key*/(BigFatAnimeTiddies) *no key*/(BigFatAnimeTiddies) is no longer owning mob BigFatAnimeTiddies(/mob/dead/new_player) (start area (11, 174, 1)) +[2019-12-04 05:13:47.418] ACCESS: Mob Login: BigFatAnimeTiddies/(Alessandra Joghs) was assigned to a /mob/living/carbon/human +[2019-12-04 05:13:47.903] GAME: BigFatAnimeTiddies/(Alessandra Joghs) Client BigFatAnimeTiddies/(Alessandra Joghs) has taken ownership of mob (/mob/living/carbon/human) (Arrival Shuttle (35, 146, 2)) +[2019-12-04 05:13:48.212] EMOTE: *no key*/(Runtime) looks alert. (Chief Medical Officer's Office (159, 109, 2)) +[2019-12-04 05:13:51.096] SAY: *no key*/(Prison Ofitser) "Engaging patrol mode." (Labor Camp Security (23, 36, 4)) +[2019-12-04 05:13:51.097] SAY: *no key*/(Prison Ofitser) "Disengaging patrol mode." (Labor Camp Security (23, 36, 4)) +[2019-12-04 05:13:51.102] SAY: *no key*/(Officer Beepsky) "Engaging patrol mode." (Labor Shuttle Dock (94, 159, 2)) +[2019-12-04 05:13:52.198] EMOTE: *no key*/(Ian) chases its tail! (Head of Personnel's Office (105, 121, 2)) +[2019-12-04 05:13:57.096] SAY: *no key*/(Poly) "WHO TOOK THE DAMN HARDSUITS?" FORCED by poly (Chief Engineer's Office (117, 83, 2)) +[2019-12-04 05:13:59.095] EMOTE: *no key*/(Pegwing) bawks! (Pirate Cutter (104, 140, 3)) +[2019-12-04 05:14:03.173] EMOTE: *no key*/(Poly) bawks! (Chief Engineer's Office (117, 83, 2)) +[2019-12-04 05:14:07.174] EMOTE: *no key*/(Pegwing) turns and flies towards the pirate's bedsheet. (Pirate Cutter (104, 140, 3)) +[2019-12-04 05:14:07.178] SAY: *no key*/(Poly) "I have lived many lives!" FORCED by poly (Chief Engineer's Office (117, 83, 2)) +[2019-12-04 05:14:07.187] SAY: *no key*/(Hijikata) "Delicious!" (Holding Facility (104, 53, 1)) +[2019-12-04 05:14:09.179] SAY: *no key*/(cow) "MOOOOOO" FORCED by poly (Holding Facility (104, 72, 1)) +[2019-12-04 05:14:11.179] SAY: *no key*/(Poly) "OH GOD ITS ABOUT TO DELAMINATE CALL THE SHUTTLE" FORCED by poly (Chief Engineer's Office (116, 83, 2)) +[2019-12-04 05:14:13.177] SAY: *no key*/(�chicken) "Bwaak bwak." FORCED by poly (Holding Facility (102, 71, 1)) +[2019-12-04 05:14:13.180] SAY: *no key*/(Hattori) "Delicious!" (Holding Facility (108, 45, 1)) +[2019-12-04 05:14:19.177] SAY: *no key*/(Poly) "Wire the solars, you lazy bums!" FORCED by poly (Chief Engineer's Office (115, 81, 2)) +[2019-12-04 05:14:21.174] EMOTE: *no key*/(Poly) squawks. (Chief Engineer's Office (115, 81, 2)) +[2019-12-04 05:14:24.277] EMOTE: *no key*/(Darwin) rolls. (Bar (133, 141, 2)) +[2019-12-04 05:14:27.171] EMOTE: *no key*/(mouse) runs in a circle. (Aft Maintenance (147, 104, 2)) +[2019-12-04 05:14:30.273] EMOTE: *no key*/(grey baby slime (29)) vibrates! (Xenobiology Lab (165, 92, 2)) +[2019-12-04 05:14:30.671] VOTE: Vote Result: Inconclusive - No Votes! +[2019-12-04 05:14:31.172] EMOTE: *no key*/(mouse) runs in a circle. (Aft Maintenance (125, 106, 2)) +[2019-12-04 05:14:35.173] SAY: *no key*/(Poly) "I have lived many lives!" FORCED by poly (Chief Engineer's Office (115, 81, 2)) +[2019-12-04 05:14:36.278] EMOTE: *no key*/(Darwin) waves his tail. (Bar (133, 141, 2)) +[2019-12-04 05:14:41.173] EMOTE: *no key*/(mouse) squeaks. (Port Quarter Maintenance (79, 81, 2)) +[2019-12-04 05:14:41.177] SAY: *no key*/(Poly) "WHO TOOK THE DAMN HARDSUITS?" FORCED by poly (Chief Engineer's Office (115, 81, 2)) +[2019-12-04 05:14:43.171] EMOTE: *no key*/(mouse) shakes. (Aft Maintenance (125, 106, 2)) +[2019-12-04 05:14:50.274] EMOTE: *no key*/(monkey (373)) scratches. (Virology (159, 101, 2)) +[2019-12-04 05:14:51.173] EMOTE: *no key*/(Poly) bawks! (Chief Engineer's Office (115, 81, 2)) +[2019-12-04 05:14:53.177] SAY: *no key*/(�Medibot) "Delicious!" (CentCom Transport Shuttle Dock (154, 73, 1)) +[2019-12-04 05:14:54.274] EMOTE: *no key*/(Runtime) crouches on its hind legs. (Chief Medical Officer's Office (159, 109, 2)) +[2019-12-04 05:14:58.276] EMOTE: *no key*/(Ian) dances around. (Head of Personnel's Office (105, 121, 2)) +[2019-12-04 05:15:03.175] EMOTE: *no key*/(Poly) squawks. (Chief Engineer's Office (115, 81, 2)) +[2019-12-04 05:15:07.178] EMOTE: *no key*/(Poly) looks in the �Zippo lighter's direction and takes flight. (Chief Engineer's Office (115, 81, 2)) +[2019-12-04 05:15:09.179] SAY: *no key*/(Hijikata) "What kind of medbay is this? Everyone's dropping like flies." (Holding Facility (104, 53, 1)) +[2019-12-04 05:15:14.273] EMOTE: *no key*/(monkey (271)) jumps! (Virology (160, 100, 2)) +[2019-12-04 05:15:18.271] EMOTE: *no key*/(monkey (373)) waves his tail. (Virology (159, 100, 2)) +[2019-12-04 05:15:20.273] EMOTE: *no key*/(monkey (685)) scratches. (Genetics Lab (161, 120, 2)) +[2019-12-04 05:15:27.173] EMOTE: *no key*/(Pegwing) bawks! (Pirate Cutter (106, 141, 3)) +[2019-12-04 05:15:31.176] SAY: *no key*/(Hijikata) "I knew it, I should've been a plastic surgeon." (Holding Facility (104, 53, 1)) +[2019-12-04 05:15:33.175] SAY: *no key*/(Poly) "Check the crystal, you chucklefucks!" FORCED by poly (Chief Engineer's Office (115, 81, 2)) +[2019-12-04 05:15:36.279] EMOTE: *no key*/(Darwin) scratches. (Bar (133, 141, 2)) +[2019-12-04 05:15:38.272] EMOTE: *no key*/(Runtime) stops resting. (Chief Medical Officer's Office (159, 109, 2)) +[2019-12-04 05:15:43.175] SAY: *no key*/(Tom) "Squeak!" FORCED by poly (Prison Wing (99, 189, 2)) +[2019-12-04 05:15:48.276] EMOTE: *no key*/(Runtime) lies down. (Chief Medical Officer's Office (159, 108, 2)) +[2019-12-04 05:15:54.165] ADMIN: BigFatAnimeTiddies/(Alessandra Joghs) created a /obj/item/storage/box/stockparts/deluxe +[2019-12-04 05:15:55.174] SAY: *no key*/(Pegwing) "Cracker?" FORCED by poly (Pirate Cutter (109, 143, 3)) +[2019-12-04 05:15:57.179] SAY: *no key*/(Hijikata) "Radar, put a mask on!" (Holding Facility (104, 53, 1)) +[2019-12-04 05:15:57.757] ADMIN: BigFatAnimeTiddies/(Alessandra Joghs) created a /obj/item/storage/part_replacer/bluespace +[2019-12-04 05:16:01.172] SAY: *no key*/(mouse) "Squeak!" FORCED by poly (Starboard Quarter Maintenance (167, 80, 2)) +[2019-12-04 05:16:03.173] EMOTE: *no key*/(Poly) looks in the burn patch's direction and takes flight. (Chief Engineer's Office (115, 81, 2)) +[2019-12-04 05:16:06.275] EMOTE: *no key*/(Runtime) looks alert. (Chief Medical Officer's Office (159, 108, 2)) +[2019-12-04 05:16:09.173] EMOTE: *no key*/(Poly) squawks. (Chief Engineer's Office (115, 81, 2)) +[2019-12-04 05:16:11.171] EMOTE: *no key*/(mouse) runs in a circle. (Aft Maintenance (147, 104, 2)) +[2019-12-04 05:16:14.274] EMOTE: *no key*/(monkey (967)) rolls. (Genetics Lab (161, 116, 2)) +[2019-12-04 05:16:15.175] EMOTE: *no key*/(Paperwork) looks around sleepily. (Cargo Bay (80, 122, 2)) +[2019-12-04 05:16:19.175] EMOTE: *no key*/(Tom) shakes. (Prison Wing (99, 189, 2)) +[2019-12-04 05:16:33.170] EMOTE: *no key*/(Pegwing) flutters its wings. (Pirate Cutter (109, 143, 3)) +[2019-12-04 05:16:33.175] SAY: *no key*/(�Medibot) "Radar, put a mask on!" (CentCom Transport Shuttle Dock (155, 73, 1)) +[2019-12-04 05:16:33.181] EMOTE: *no key*/(Tom) shakes. (Prison Wing (100, 189, 2)) +[2019-12-04 05:16:39.174] SAY: *no key*/(Poly) "Poly wanna cracker!" FORCED by poly (Chief Engineer's Office (115, 81, 2)) +[2019-12-04 05:16:44.275] EMOTE: *no key*/(monkey (858)) waves her tail. (Genetics Lab (161, 118, 2)) +[2019-12-04 05:16:46.276] EMOTE: *no key*/(Runtime) looks alert. (Chief Medical Officer's Office (159, 108, 2)) +[2019-12-04 05:16:49.176] EMOTE: *no key*/(Poly) flutters its wings. (Chief Engineer's Office (115, 81, 2)) +[2019-12-04 05:16:50.273] EMOTE: *no key*/(monkey (373)) jumps! (Virology (160, 101, 2)) +[2019-12-04 05:16:51.173] SAY: *no key*/(Poly) "OH GOD ITS ABOUT TO DELAMINATE CALL THE SHUTTLE" FORCED by poly (Chief Engineer's Office (115, 81, 2)) +[2019-12-04 05:16:52.276] EMOTE: *no key*/(Runtime) stops resting. (Chief Medical Officer's Office (159, 108, 2)) +[2019-12-04 05:16:53.176] SAY: *no key*/(Poly) "OH GOD ITS ABOUT TO DELAMINATE CALL THE SHUTTLE" FORCED by poly (Chief Engineer's Office (115, 81, 2)) +[2019-12-04 05:16:57.177] SAY: *no key*/(�chicken) "Cluck!" FORCED by poly (Holding Facility (102, 72, 1)) +[2019-12-04 05:16:59.176] EMOTE: *no key*/(Poly) looks in the burn patch's direction and takes flight. (Chief Engineer's Office (115, 81, 2)) +[2019-12-04 05:17:01.171] SAY: *no key*/(Pegwing) "Hello!" FORCED by poly (Pirate Cutter (108, 143, 3)) +[2019-12-04 05:17:03.176] EMOTE: *no key*/(Poly) bawks! (Chief Engineer's Office (116, 82, 2)) +[2019-12-04 05:17:05.174] SAY: *no key*/(Poly) "Wire the solars, you lazy bums!" FORCED by poly (Chief Engineer's Office (115, 81, 2)) +[2019-12-04 05:17:06.275] EMOTE: *no key*/(monkey (858)) waves her tail. (Genetics Lab (160, 118, 2)) +[2019-12-04 05:17:07.174] EMOTE: *no key*/(Runtime) shakes its head. (Chief Medical Officer's Office (158, 108, 2)) +[2019-12-04 05:17:08.276] EMOTE: *no key*/(Runtime) crouches on its hind legs. (Chief Medical Officer's Office (158, 108, 2)) +[2019-12-04 05:17:11.172] EMOTE: *no key*/(mouse) squeaks. (Aft Maintenance (125, 108, 2)) +[2019-12-04 05:17:13.174] SAY: *no key*/(mouse) "Squeak?" FORCED by poly (Aft Maintenance (147, 104, 2)) +[2019-12-04 05:17:17.175] SAY: *no key*/(mouse) "SQUEAK!" FORCED by poly (Aft Maintenance (130, 105, 2)) +[2019-12-04 05:17:19.175] SAY: *no key*/(�Medibot) "Delicious!" (Authorship (42, 106, 3)) +[2019-12-04 05:17:27.174] SAY: *no key*/(Poly) "OH GOD ITS ABOUT TO DELAMINATE CALL THE SHUTTLE" FORCED by poly (Chief Engineer's Office (115, 81, 2)) +[2019-12-04 05:17:35.172] SAY: *no key*/(mouse) "SQUEAK!" FORCED by poly (Port Quarter Maintenance (85, 93, 2)) +[2019-12-04 05:17:36.275] EMOTE: *no key*/(Runtime) sits down. (Chief Medical Officer's Office (158, 108, 2)) +[2019-12-04 05:17:45.172] SAY: *no key*/(mouse) "SQUEAK!" FORCED by poly (Aft Maintenance (146, 97, 2)) +[2019-12-04 05:17:49.177] SAY: *no key*/(Poly) "Wire the solars, you lazy bums!" FORCED by poly (Chief Engineer's Office (115, 81, 2)) +[2019-12-04 05:17:54.274] EMOTE: *no key*/(Runtime) sits down. (Chief Medical Officer's Office (158, 108, 2)) +[2019-12-04 05:17:55.174] EMOTE: *no key*/(Poly) looks in the �Power-ON cartridge's direction and takes flight. (Chief Engineer's Office (115, 81, 2)) +[2019-12-04 05:17:56.275] EMOTE: *no key*/(monkey (632)) scratches. (Genetics Lab (160, 117, 2)) +[2019-12-04 05:17:59.171] EMOTE: *no key*/(mouse) squeaks. (Custodial Closet (124, 109, 2)) +[2019-12-04 05:17:59.173] SAY: *no key*/(Poly) "Check the crystal, you chucklefucks!" FORCED by poly (Chief Engineer's Office (116, 79, 2)) +[2019-12-04 05:18:05.174] EMOTE: *no key*/(mouse) squeaks. (Aft Maintenance (130, 104, 2)) +[2019-12-04 05:18:05.178] SAY: *no key*/(Runtime) "HSSSSS" FORCED by poly (Chief Medical Officer's Office (158, 108, 2)) +[2019-12-04 05:18:07.176] SAY: *no key*/(Poly) "Check the crystal, you chucklefucks!" FORCED by poly (Chief Engineer's Office (116, 79, 2)) +[2019-12-04 05:18:13.176] SAY: *no key*/(Tom) "SQUEAK!" FORCED by poly (Prison Wing (101, 191, 2)) +[2019-12-04 05:18:14.271] EMOTE: *no key*/(grey baby slime (443)) bounces in place. (Xenobiology Lab (176, 92, 2)) +[2019-12-04 05:18:16.274] EMOTE: *no key*/(monkey (967)) rolls. (Genetics Lab (161, 119, 2)) +[2019-12-04 05:18:22.274] EMOTE: *no key*/(monkey (632)) waves her tail. (Genetics Lab (160, 116, 2)) +[2019-12-04 05:18:23.172] SAY: *no key*/(mouse) "SQUEAK!" FORCED by poly (Aft Maintenance (146, 98, 2)) +[2019-12-04 05:18:23.175] SAY: *no key*/(Poly) "Wire the solars, you lazy bums!" FORCED by poly (Chief Engineer's Office (115, 81, 2)) +[2019-12-04 05:18:26.272] EMOTE: *no key*/(monkey (236)) rolls. (Genetics Lab (160, 119, 2)) +[2019-12-04 05:18:29.177] SAY: *no key*/(Ian) "Woof!" FORCED by poly (Head of Personnel's Office (103, 120, 2)) +[2019-12-04 05:18:39.173] SAY: *no key*/(Poly) "I have lived many lives!" FORCED by poly (Chief Engineer's Office (115, 81, 2)) +[2019-12-04 05:18:40.272] EMOTE: *no key*/(monkey (858)) jumps! (Genetics Lab (161, 116, 2)) +[2019-12-04 05:18:41.173] SAY: *no key*/(mouse) "Squeak?" FORCED by poly (Aft Maintenance (126, 109, 2)) +[2019-12-04 05:18:43.172] EMOTE: *no key*/(Pegwing) looks in the gold coin's direction and takes flight. (Pirate Cutter (112, 143, 3)) +[2019-12-04 05:18:43.177] SAY: *no key*/(Hattori) "Radar, put a mask on!" (Holding Facility (108, 45, 1)) +[2019-12-04 05:18:47.176] EMOTE: *no key*/(Poly) flutters its wings. (Chief Engineer's Office (115, 81, 2)) +[2019-12-04 05:18:48.276] EMOTE: *no key*/(monkey (215)) jumps! (Genetics Lab (160, 116, 2)) +[2019-12-04 05:18:53.174] EMOTE: *no key*/(Runtime) mews. (Chief Medical Officer's Office (158, 108, 2)) +[2019-12-04 05:18:55.176] SAY: *no key*/(�chicken) "Cluck!" FORCED by poly (Holding Facility (104, 71, 1)) +[2019-12-04 05:18:59.178] SAY: *no key*/(Hattori) "I knew it, I should've been a plastic surgeon." (Holding Facility (108, 45, 1)) +[2019-12-04 05:19:02.274] EMOTE: *no key*/(monkey (165)) rolls. (Virology (159, 100, 2)) +[2019-12-04 05:19:05.172] SAY: *no key*/(mouse) "SQUEAK!" FORCED by poly (Aft Maintenance (146, 98, 2)) +[2019-12-04 05:19:05.178] EMOTE: *no key*/(cow) shakes its head. (Holding Facility (102, 71, 1)) +[2019-12-04 05:19:07.176] EMOTE: *no key*/(Poly) looks in the �Power-ON cartridge's direction and takes flight. (Chief Engineer's Office (115, 81, 2)) +[2019-12-04 05:19:09.175] EMOTE: *no key*/(Paperwork) snores. (Cargo Bay (82, 120, 2)) +[2019-12-04 05:19:13.173] SAY: *no key*/(Poly) "Check the crystal, you chucklefucks!" FORCED by poly (Chief Engineer's Office (116, 79, 2)) +[2019-12-04 05:19:17.176] EMOTE: *no key*/(mouse) squeaks. (Aft Maintenance (146, 99, 2)) +[2019-12-04 05:19:25.178] SAY: *no key*/(Ian) "Bark!" FORCED by poly (Head of Personnel's Office (104, 120, 2)) +[2019-12-04 05:19:27.177] SAY: *no key*/(Poly) "Poly wanna cracker!" FORCED by poly (Chief Engineer's Office (115, 81, 2)) +[2019-12-04 05:19:28.279] EMOTE: *no key*/(monkey (858)) rolls. (Genetics Lab (160, 116, 2)) +[2019-12-04 05:19:43.173] SAY: *no key*/(Runtime) "HSSSSS" FORCED by poly (Chief Medical Officer's Office (158, 108, 2)) +[2019-12-04 05:19:47.172] EMOTE: *no key*/(mouse) shakes. (Aft Maintenance (146, 103, 2)) +[2019-12-04 05:19:47.181] SAY: *no key*/(cow) "moo" FORCED by poly (Holding Facility (103, 72, 1)) +[2019-12-04 05:19:54.274] GAME: Random Event triggering: Minor Space Dust (/datum/round_event/space_dust) +[2019-12-04 05:19:55.175] SAY: *no key*/(Runtime) "HSSSSS" FORCED by poly (Chief Medical Officer's Office (158, 108, 2)) +[2019-12-04 05:19:57.175] EMOTE: *no key*/(mouse) shakes. (Aft Maintenance (146, 104, 2)) +[2019-12-04 05:19:57.182] SAY: *no key*/(cow) "moo" FORCED by poly (Holding Facility (102, 72, 1)) +[2019-12-04 05:20:01.174] EMOTE: *no key*/(Ian) barks! (Head of Personnel's Office (105, 120, 2)) +[2019-12-04 05:20:01.176] SAY: *no key*/(�chicken) "BWAAAAARK BWAK BWAK BWAK!" FORCED by poly (Holding Facility (104, 71, 1)) +[2019-12-04 05:20:03.174] EMOTE: *no key*/(Pegwing) looks in the gold coin's direction and takes flight. (Pirate Cutter (112, 143, 3)) +[2019-12-04 05:20:11.177] SAY: *no key*/(Tom) "Squeak!" FORCED by poly (Prison Wing (101, 191, 2)) +[2019-12-04 05:20:12.275] EMOTE: *no key*/(monkey (967)) waves her tail. (Genetics Lab (161, 119, 2)) +[2019-12-04 05:20:13.173] EMOTE: *no key*/(Poly) looks in the �Power-ON cartridge's direction and takes flight. (Chief Engineer's Office (115, 81, 2)) +[2019-12-04 05:20:25.172] SAY: *no key*/(�Medibot) "Radar, put a mask on!" (CentCom Transport Shuttle Dock (155, 73, 1)) +[2019-12-04 05:20:27.181] SAY: *no key*/(Hattori) "What kind of medbay is this? Everyone's dropping like flies." (Holding Facility (108, 45, 1)) +[2019-12-04 05:20:28.274] EMOTE: *no key*/(Runtime) looks alert. (Chief Medical Officer's Office (158, 108, 2)) +[2019-12-04 05:20:33.173] EMOTE: *no key*/(Poly) squawks. (Chief Engineer's Office (116, 79, 2)) +[2019-12-04 05:20:37.172] SAY: *no key*/(mouse) "Squeak!" FORCED by poly (Starboard Quarter Maintenance (169, 80, 2)) +[2019-12-04 05:20:37.176] SAY: *no key*/(Poly) "Poly wanna cracker!" FORCED by poly (Chief Engineer's Office (116, 80, 2)) +[2019-12-04 05:20:39.176] SAY: *no key*/(cow) "moo" FORCED by poly (Holding Facility (104, 72, 1)) +[2019-12-04 05:20:43.176] SAY: *no key*/(Tom) "Squeak!" FORCED by poly (Prison Wing (101, 191, 2)) +[2019-12-04 05:20:45.173] EMOTE: *no key*/(Poly) squawks. (Chief Engineer's Office (116, 80, 2)) +[2019-12-04 05:20:53.172] SAY: *no key*/(mouse) "SQUEAK!" FORCED by poly (Engineering (108, 58, 2)) +[2019-12-04 05:20:58.272] EMOTE: *no key*/(monkey (135)) scratches. (Virology (159, 99, 2)) +[2019-12-04 05:21:00.276] EMOTE: *no key*/(Ian) chases its tail! (Head of Personnel's Office (105, 121, 2)) +[2019-12-04 05:21:01.174] SAY: *no key*/(Poly) "WHO TOOK THE DAMN HARDSUITS?" FORCED by poly (Chief Engineer's Office (115, 81, 2)) +[2019-12-04 05:21:02.277] EMOTE: *no key*/(monkey (632)) waves her tail. (Genetics Lab (161, 119, 2)) +[2019-12-04 05:21:05.171] EMOTE: *no key*/(mouse) shakes. (Aft Maintenance (146, 100, 2)) +[2019-12-04 05:21:15.172] EMOTE: *no key*/(Pegwing) looks in the gold coin's direction and takes flight. (Pirate Cutter (112, 143, 3)) +[2019-12-04 05:21:15.173] SAY: *no key*/(�Medibot) "Radar, put a mask on!" (Authorship (42, 106, 3)) +[2019-12-04 05:21:15.176] SAY: *no key*/(Poly) "Poly wanna cracker!" FORCED by poly (Chief Engineer's Office (115, 81, 2)) +[2019-12-04 05:21:20.273] EMOTE: *no key*/(Runtime) walks around. (Chief Medical Officer's Office (158, 108, 2)) +[2019-12-04 05:21:30.274] EMOTE: *no key*/(monkey (373)) rolls. (Virology (158, 99, 2)) +[2019-12-04 05:21:30.276] EMOTE: *no key*/(Ian) chases its tail! (Head of Personnel's Office (105, 120, 2)) +[2019-12-04 05:21:33.177] EMOTE: *no key*/(�chicken) pecks at the ground. (Holding Facility (104, 72, 1)) +[2019-12-04 05:21:37.174] EMOTE: *no key*/(Poly) bawks! (Chief Engineer's Office (115, 81, 2)) +[2019-12-04 05:21:39.175] EMOTE: *no key*/(cow) shakes its head. (Holding Facility (104, 72, 1)) +[2019-12-04 05:21:41.175] EMOTE: *no key*/(Tom) squeaks. (Prison Wing (100, 190, 2)) +[2019-12-04 05:21:43.174] EMOTE: *no key*/(Poly) looks in the �Power-ON cartridge's direction and takes flight. (Chief Engineer's Office (115, 81, 2)) +[2019-12-04 05:21:47.176] EMOTE: *no key*/(Poly) flutters its wings. (Chief Engineer's Office (116, 79, 2)) +[2019-12-04 05:21:49.175] SAY: *no key*/(Poly) "I have lived many lives!" FORCED by poly (Chief Engineer's Office (116, 79, 2)) +[2019-12-04 05:21:51.176] SAY: *no key*/(Poly) "I have lived many lives!" FORCED by poly (Chief Engineer's Office (116, 80, 2)) +[2019-12-04 05:21:53.173] SAY: *no key*/(Poly) "Wire the solars, you lazy bums!" FORCED by poly (Chief Engineer's Office (116, 79, 2)) +[2019-12-04 05:21:58.280] EMOTE: *no key*/(Darwin) scratches. (Bar (133, 141, 2)) +[2019-12-04 05:22:05.174] SAY: *no key*/(Poly) "Wire the solars, you lazy bums!" FORCED by poly (Chief Engineer's Office (116, 81, 2)) +[2019-12-04 05:22:12.281] EMOTE: *no key*/(Darwin) scratches. (Bar (133, 141, 2)) +[2019-12-04 05:22:15.175] EMOTE: *no key*/(cow) shakes its head. (Holding Facility (103, 72, 1)) +[2019-12-04 05:22:17.183] SAY: *no key*/(Nobody's Perfect) "Delicious!" (Wizard's Den (24, 75, 1)) +[2019-12-04 05:22:19.174] SAY: *no key*/(Poly) "Check the crystal, you chucklefucks!" FORCED by poly (Chief Engineer's Office (118, 80, 2)) +[2019-12-04 05:22:25.172] SAY: *no key*/(Poly) "OH GOD ITS ABOUT TO DELAMINATE CALL THE SHUTTLE" FORCED by poly (Chief Engineer's Office (115, 81, 2)) +[2019-12-04 05:22:29.178] SAY: *no key*/(Hattori) "Radar, put a mask on!" (Holding Facility (108, 45, 1)) +[2019-12-04 05:22:35.171] EMOTE: *no key*/(mouse) runs in a circle. (Fore Maintenance (97, 160, 2)) +[2019-12-04 05:22:35.172] EMOTE: *no key*/(mouse) runs in a circle. (Aft Maintenance (146, 99, 2)) +[2019-12-04 05:22:37.171] SAY: *no key*/(mouse) "Squeak!" FORCED by poly (Port Quarter Maintenance (85, 92, 2)) +[2019-12-04 05:22:39.172] SAY: *no key*/(mouse) "Squeak!" FORCED by poly (Fore Maintenance (97, 160, 2)) +[2019-12-04 05:22:39.175] EMOTE: *no key*/(Poly) squawks. (Chief Engineer's Office (115, 81, 2)) +[2019-12-04 05:22:43.173] EMOTE: *no key*/(Poly) flutters its wings. (Chief Engineer's Office (115, 81, 2)) +[2019-12-04 05:22:45.172] EMOTE: *no key*/(Pegwing) looks in the gold coin's direction and takes flight. (Pirate Cutter (112, 143, 3)) +[2019-12-04 05:22:45.174] SAY: *no key*/(Poly) "OH GOD ITS ABOUT TO DELAMINATE CALL THE SHUTTLE" FORCED by poly (Chief Engineer's Office (115, 81, 2)) +[2019-12-04 05:22:49.174] SAY: *no key*/(Poly) "Check the crystal, you chucklefucks!" FORCED by poly (Chief Engineer's Office (115, 81, 2)) +[2019-12-04 05:22:49.179] EMOTE: *no key*/(�chicken) pecks at the ground. (Holding Facility (104, 71, 1)) +[2019-12-04 05:22:53.178] SAY: *no key*/(�chicken) "Bwaak bwak." FORCED by poly (Holding Facility (104, 71, 1)) +[2019-12-04 05:22:57.175] SAY: *no key*/(Poly) "WHO TOOK THE DAMN HARDSUITS?" FORCED by poly (Chief Engineer's Office (115, 81, 2)) +[2019-12-04 05:23:01.172] SAY: *no key*/(mouse) "Squeak!" FORCED by poly (Aft Maintenance (146, 99, 2)) +[2019-12-04 05:23:07.176] SAY: *no key*/(Poly) "Wire the solars, you lazy bums!" FORCED by poly (Chief Engineer's Office (115, 81, 2)) +[2019-12-04 05:23:07.180] SAY: *no key*/(Hattori) "Delicious!" (Holding Facility (108, 45, 1)) +[2019-12-04 05:23:09.174] EMOTE: *no key*/(Poly) flutters its wings. (Chief Engineer's Office (115, 81, 2)) +[2019-12-04 05:23:09.175] SAY: *no key*/(Runtime) "HSSSSS" FORCED by poly (Chief Medical Officer's Office (158, 107, 2)) +[2019-12-04 05:23:09.177] EMOTE: *no key*/(Ian) shakes its head. (Head of Personnel's Office (104, 120, 2)) +[2019-12-04 05:23:10.273] EMOTE: *no key*/(grey baby slime (443)) lights up for a bit, then stops. (Xenobiology Lab (176, 92, 2)) +[2019-12-04 05:23:11.175] EMOTE: *no key*/(Poly) looks in the �Power-ON cartridge's direction and takes flight. (Chief Engineer's Office (115, 81, 2)) +[2019-12-04 05:23:15.171] SAY: *no key*/(mouse) "Squeak?" FORCED by poly (Aft Maintenance (123, 105, 2)) +[2019-12-04 05:23:15.174] SAY: *no key*/(Poly) "OH GOD ITS ABOUT TO DELAMINATE CALL THE SHUTTLE" FORCED by poly (Chief Engineer's Office (116, 79, 2)) +[2019-12-04 05:23:15.178] SAY: *no key*/(Tom) "SQUEAK!" FORCED by poly (Prison Wing (104, 189, 2)) +[2019-12-04 05:23:18.288] EMOTE: *no key*/(grey baby slime (443)) bounces in place. (Xenobiology Lab (175, 92, 2)) +[2019-12-04 05:23:19.174] SAY: *no key*/(Poly) "OH GOD ITS ABOUT TO DELAMINATE CALL THE SHUTTLE" FORCED by poly (Chief Engineer's Office (116, 79, 2)) +[2019-12-04 05:23:21.173] SAY: *no key*/(Poly) "Wire the solars, you lazy bums!" FORCED by poly (Chief Engineer's Office (116, 79, 2)) +[2019-12-04 05:23:29.174] SAY: *no key*/(Poly) "WHO TOOK THE DAMN HARDSUITS?" FORCED by poly (Chief Engineer's Office (115, 81, 2)) diff --git a/data/logs/2019/12/04/round-00.12.46/gravity.html b/data/logs/2019/12/04/round-00.12.46/gravity.html new file mode 100644 index 00000000..158d2acb --- /dev/null +++ b/data/logs/2019/12/04/round-00.12.46/gravity.html @@ -0,0 +1,6 @@ +00:13:01 [0x20070f6] (113,123,2) || the gravitational generator has regained power.
+00:13:01 [0x20070f6] (113,123,2) || the gravitational generator is now charging.
+00:13:12 [0x20070f6] (113,123,2) || the gravitational generator has regained power.
+00:13:12 [0x20070f6] (113,123,2) || the gravitational generator is now charging.
+00:13:31 [0x20070f6] (113,123,2) || the gravitational generator has regained power.
+00:13:31 [0x20070f6] (113,123,2) || the gravitational generator is now charging.
diff --git a/data/logs/2019/12/04/round-00.12.46/hrefs.log b/data/logs/2019/12/04/round-00.12.46/hrefs.log new file mode 100644 index 00000000..819a690b --- /dev/null +++ b/data/logs/2019/12/04/round-00.12.46/hrefs.log @@ -0,0 +1,23 @@ +[2019-12-04 05:12:46.881] Starting up round ID . + - ------------------------- +[2019-12-04 05:12:49.468] HREF: BigFatAnimeTiddies (usr:BigFatAnimeTiddies[(11,174,1)]) : _src_=chat&proc=analyzeClientData¶m[cookie]={"connData":[{"ckey":"bigfatanimetiddies","ip":"68.38.94.206","compid":"3498261404"},{"ckey":"bigfatanimetiddies","ip":null,"compid":"3498261404"},{"ckey":"bigfatanimetiddies","ip":"127.0.0.1","compid":"3498261404"},{"ckey":"guest3498261404","ip":null,"compid":"3498261404"}]} +[2019-12-04 05:13:43.968] HREF: BigFatAnimeTiddies (usr:BigFatAnimeTiddies[(11,174,1)]) : BigFatAnimeTiddies src=[mob_9];late_join=1 +[2019-12-04 05:13:47.405] HREF: BigFatAnimeTiddies (usr:BigFatAnimeTiddies[(11,174,1)]) : BigFatAnimeTiddies src=[mob_9];SelectedJob=Chief%20Medical%20Officer +[2019-12-04 05:15:45.786] HREF: BigFatAnimeTiddies (usr:Alessandra Joghs[(154,115,2)]) : bigfatanimetiddies's admin datum (!localhost!) src=[0x210012a7];admin_token=810014961010010072692845736252074921;create_object=1 +[2019-12-04 05:15:54.162] HREF: BigFatAnimeTiddies (usr:Alessandra Joghs[(154,115,2)]) : bigfatanimetiddies's admin datum (!localhost!) src=%5B0x210012a7%5D%3Badmin_token%3D810014961010010072692845736252074921&admin_token=810014961010010072692845736252074921&filter=part&offset=x%2Cy%2Cz&offset_type=relative&object_count=1&object_dir=&object_name=&object_where=onfloor&object_list=%2Fobj%2Fitem%2Fstorage%2Fbox%2Fstockparts%2Fdeluxe +[2019-12-04 05:15:57.756] HREF: BigFatAnimeTiddies (usr:Alessandra Joghs[(154,115,2)]) : bigfatanimetiddies's admin datum (!localhost!) src=%5B0x210012a7%5D%3Badmin_token%3D810014961010010072692845736252074921&admin_token=810014961010010072692845736252074921&filter=part&offset=x%2Cy%2Cz&offset_type=relative&object_count=1&object_dir=&object_name=&object_where=onfloor&object_list=%2Fobj%2Fitem%2Fstorage%2Fpart_replacer%2Fbluespace +[2019-12-04 05:16:15.695] HREF: BigFatAnimeTiddies (usr:Alessandra Joghs[(153,113,2)]) : The cloning console src=[0x200798f];task=autoprocess +[2019-12-04 05:17:26.114] HREF: BigFatAnimeTiddies (usr:Alessandra Joghs[(154,114,2)]) : The cloning console src=[0x200798f];menu=2 +[2019-12-04 05:17:27.116] HREF: BigFatAnimeTiddies (usr:Alessandra Joghs[(154,114,2)]) : The cloning console src=[0x200798f];view_rec=bbfb +[2019-12-04 05:21:21.459] HREF: BigFatAnimeTiddies (usr:Alessandra Joghs[(158,116,2)]) : The �DNA scanner access console src=[0x200767c];task=inspect;num=1; +[2019-12-04 05:21:21.992] HREF: BigFatAnimeTiddies (usr:Alessandra Joghs[(158,116,2)]) : The �DNA scanner access console src=[0x200767c];task=inspect;num=2; +[2019-12-04 05:21:22.318] HREF: BigFatAnimeTiddies (usr:Alessandra Joghs[(158,116,2)]) : The �DNA scanner access console src=[0x200767c];task=inspect;num=3; +[2019-12-04 05:21:22.866] HREF: BigFatAnimeTiddies (usr:Alessandra Joghs[(158,116,2)]) : The �DNA scanner access console src=[0x200767c];task=inspect;num=2; +[2019-12-04 05:21:23.726] HREF: BigFatAnimeTiddies (usr:Alessandra Joghs[(158,116,2)]) : The �DNA scanner access console src=[0x200767c];task=pulsegene;num=5;path=/datum/mutation/human/race; +[2019-12-04 05:21:33.927] HREF: BigFatAnimeTiddies (usr:Alessandra Joghs[(153,114,2)]) : The cloning console src=[0x200798f];menu=2 +[2019-12-04 05:21:35.623] HREF: BigFatAnimeTiddies (usr:Alessandra Joghs[(154,114,2)]) : The cloning console src=[0x200798f];menu=1 +[2019-12-04 05:21:38.936] HREF: BigFatAnimeTiddies (usr:Alessandra Joghs[(154,114,2)]) : The cloning console src=[0x200798f];scan=1 +[2019-12-04 05:21:42.226] HREF: BigFatAnimeTiddies (usr:Alessandra Joghs[(154,114,2)]) : The cloning console src=[0x200798f];scan=1;body_only=1 +[2019-12-04 05:21:45.233] HREF: BigFatAnimeTiddies (usr:Alessandra Joghs[(154,114,2)]) : The cloning console src=[0x200798f];menu=2 +[2019-12-04 05:21:46.295] HREF: BigFatAnimeTiddies (usr:Alessandra Joghs[(154,114,2)]) : The cloning console src=[0x200798f];view_rec=2fa3 +[2019-12-04 05:21:50.311] HREF: BigFatAnimeTiddies (usr:Alessandra Joghs[(154,114,2)]) : The cloning console src=[0x200798f];clone=2fa3;empty=TRUE diff --git a/data/logs/2019/12/04/round-00.12.46/job_debug.log b/data/logs/2019/12/04/round-00.12.46/job_debug.log new file mode 100644 index 00000000..9e9fe98d --- /dev/null +++ b/data/logs/2019/12/04/round-00.12.46/job_debug.log @@ -0,0 +1,2 @@ +[2019-12-04 05:12:46.883] Starting up round ID . + - ------------------------- diff --git a/data/logs/2019/12/04/round-00.12.46/manifest.log b/data/logs/2019/12/04/round-00.12.46/manifest.log new file mode 100644 index 00000000..428b3df4 --- /dev/null +++ b/data/logs/2019/12/04/round-00.12.46/manifest.log @@ -0,0 +1,3 @@ +[2019-12-04 05:12:46.880] Starting up round ID . + - ------------------------- +[2019-12-04 05:13:47.871] BigFatAnimeTiddies \ Alessandra Joghs \ Chief Medical Officer \ NONE \ LATEJOIN diff --git a/data/logs/2019/12/04/round-00.12.46/pda.log b/data/logs/2019/12/04/round-00.12.46/pda.log new file mode 100644 index 00000000..0c22c659 --- /dev/null +++ b/data/logs/2019/12/04/round-00.12.46/pda.log @@ -0,0 +1,2 @@ +[2019-12-04 05:12:46.879] Starting up round ID . + - ------------------------- diff --git a/data/logs/2019/12/04/round-00.12.46/qdel.log b/data/logs/2019/12/04/round-00.12.46/qdel.log new file mode 100644 index 00000000..7cfcd6ed --- /dev/null +++ b/data/logs/2019/12/04/round-00.12.46/qdel.log @@ -0,0 +1,2 @@ +[2019-12-04 05:12:46.881] Starting up round ID . + - ------------------------- diff --git a/data/logs/2019/12/04/round-00.12.46/runtime.log b/data/logs/2019/12/04/round-00.12.46/runtime.log new file mode 100644 index 00000000..e521a1c2 --- /dev/null +++ b/data/logs/2019/12/04/round-00.12.46/runtime.log @@ -0,0 +1,64 @@ +[2019-12-04 05:12:46.882] Starting up round ID . + - ------------------------- +[2019-12-04 05:12:46.886] Running /tg/ revision: 2019-12-04 + - origin/master: 95e35dc714ec059af1ba4f6355f717d810b87fa6 + - HEAD: 2cbcd7d49519db45ac762495b8c325f79919db0e +[2019-12-04 05:12:47.946] Initialized Title Screen subsystem within 0 seconds! +[2019-12-04 05:12:47.947] Initialized Database subsystem within 0 seconds! +[2019-12-04 05:12:47.949] Initialized Blackbox subsystem within 0 seconds! +[2019-12-04 05:12:47.951] Initialized Server Tasks subsystem within 0 seconds! +[2019-12-04 05:12:47.953] Initialized Input subsystem within 0 seconds! +[2019-12-04 05:12:47.954] Initialized Vis contents overlays subsystem within 0 seconds! +[2019-12-04 05:12:47.976] Initialized Research subsystem within 0 seconds! +[2019-12-04 05:12:47.980] Initialized Events subsystem within 0 seconds! +[2019-12-04 05:12:47.985] Initialized Jobs subsystem within 0 seconds! +[2019-12-04 05:12:47.988] Initialized Quirks subsystem within 0 seconds! +[2019-12-04 05:12:47.998] Initialized Ticker subsystem within 0 seconds! +[2019-12-04 05:12:48.002] Loading Box Station... +[2019-12-04 05:12:53.091] Loaded Station in 5s! +[2019-12-04 05:12:54.302] Loaded Lavaland in 1.2s! +[2019-12-04 05:12:55.190] Ruin loader finished with 0 left to spend. +[2019-12-04 05:12:56.255] Ruin loader finished with 0 left to spend. +[2019-12-04 05:12:56.466] Initialized Mapping subsystem within 8.4 seconds! +[2019-12-04 05:12:56.469] Initialized Networks subsystem within 0 seconds! +[2019-12-04 05:13:00.030] ### MAP WARNING, the airlock cyclelink helper at Brig (119, 168, 2) tried to set Brig cyclelinkeddir, but it's already set! +[2019-12-04 05:13:00.071] ### MAP WARNING, the airlock cyclelink helper at Brig (119, 165, 2) tried to set Brig cyclelinkeddir, but it's already set! +[2019-12-04 05:13:12.829] Initialized Atoms subsystem within 16.4 seconds! +[2019-12-04 05:13:12.865] Initialized Language subsystem within 0 seconds! +[2019-12-04 05:13:12.978] Initialized Machines subsystem within 0.1 seconds! +[2019-12-04 05:13:13.015] Initialized Circuit subsystem within 0.1 seconds! +[2019-12-04 05:13:13.018] Initialized Disease subsystem within 0 seconds! +[2019-12-04 05:13:13.020] Initialized Jukeboxes subsystem within 0 seconds! +[2019-12-04 05:13:13.022] Initialized Medals subsystem within 0 seconds! +[2019-12-04 05:13:13.023] Initialized Processing subsystem within 0 seconds! +[2019-12-04 05:13:13.024] Initialized Night Shift subsystem within 0 seconds! +[2019-12-04 05:13:13.026] Initialized Parallax subsystem within 0 seconds! +[2019-12-04 05:13:13.214] Initialized Traumas subsystem within 0.2 seconds! +[2019-12-04 05:13:13.217] Initialized Weather subsystem within 0 seconds! +[2019-12-04 05:13:15.029] ## WARNING: There are 127 active turfs at roundstart, this is a mapping error caused by a difference of the air between the adjacent turfs. You can see its coordinates using "Mapping -> Show roundstart AT list" verb (debug verbs required) +[2019-12-04 05:13:15.044] ## WARNING: HEY! LISTEN! right now were wasted processing 127 turf(s) (connected to 837 other turfs) with atmos differences at round start. +[2019-12-04 05:13:15.241] ## WARNING: build_pipeline(): /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden added to a pipenet while still having one. (pipes leading to the same spot stacking in one turf) Nearby: (159, 121, 2) +[2019-12-04 05:13:15.242] ## WARNING: build_pipeline(): /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden added to a pipenet while still having one. (pipes leading to the same spot stacking in one turf) Nearby: (157, 121, 2) +[2019-12-04 05:13:15.243] ## WARNING: build_pipeline(): /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden added to a pipenet while still having one. (pipes leading to the same spot stacking in one turf) Nearby: (160, 121, 2) +[2019-12-04 05:13:15.245] ## WARNING: build_pipeline(): /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden added to a pipenet while still having one. (pipes leading to the same spot stacking in one turf) Nearby: (158, 121, 2) +[2019-12-04 05:13:15.246] ## WARNING: build_pipeline(): /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden added to a pipenet while still having one. (pipes leading to the same spot stacking in one turf) Nearby: (156, 121, 2) +[2019-12-04 05:13:15.247] ## WARNING: build_pipeline(): /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden added to a pipenet while still having one. (pipes leading to the same spot stacking in one turf) Nearby: (161, 121, 2) +[2019-12-04 05:13:15.249] ## WARNING: build_pipeline(): /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden added to a pipenet while still having one. (pipes leading to the same spot stacking in one turf) Nearby: (155, 121, 2) +[2019-12-04 05:13:15.251] ## WARNING: build_pipeline(): /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden added to a pipenet while still having one. (pipes leading to the same spot stacking in one turf) Nearby: (162, 121, 2) +[2019-12-04 05:13:15.252] ## WARNING: build_pipeline(): /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden added to a pipenet while still having one. (pipes leading to the same spot stacking in one turf) Nearby: (154, 121, 2) +[2019-12-04 05:13:15.253] ## WARNING: build_pipeline(): /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden added to a pipenet while still having one. (pipes leading to the same spot stacking in one turf) Nearby: (163, 121, 2) +[2019-12-04 05:13:15.257] ## WARNING: build_pipeline(): further messages about pipenets will be suppressed +[2019-12-04 05:13:15.279] Initialized Atmospherics subsystem within 2 seconds! +[2019-12-04 05:13:15.282] Initialized Atmospherics - Turfs subsystem within 0 seconds! +[2019-12-04 05:13:17.104] Initialized Assets subsystem within 1.9 seconds! +[2019-12-04 05:13:20.289] Initialized Icon Smoothing subsystem within 3.1 seconds! +[2019-12-04 05:13:20.835] Initialized Overlay subsystem within 0.6 seconds! +[2019-12-04 05:13:20.837] Initialized XKeyScore subsystem within 0 seconds! +[2019-12-04 05:13:20.840] Initialized Sticky Ban subsystem within 0 seconds! +[2019-12-04 05:13:26.753] Initialized Lighting subsystem within 5.9 seconds! +[2019-12-04 05:13:29.212] Initialized Shuttle subsystem within 2.5 seconds! +[2019-12-04 05:13:29.252] Initialized Minor Mapping subsystem within 0 seconds! +[2019-12-04 05:13:29.256] Initialized Pathfinder subsystem within 0 seconds! +[2019-12-04 05:13:29.288] Initialized Persistence subsystem within 0 seconds! +[2019-12-04 05:13:29.289] Initializations complete within 41.3 seconds! +[2019-12-04 05:13:42.801] Game start took 0s diff --git a/data/logs/2019/12/04/round-00.12.46/singulo.html b/data/logs/2019/12/04/round-00.12.46/singulo.html new file mode 100644 index 00000000..77f6c118 --- /dev/null +++ b/data/logs/2019/12/04/round-00.12.46/singulo.html @@ -0,0 +1,13 @@ +00:13:47 [0x20258ec] (66,129,3) || the power storage unit lost power and turned off
+00:13:47 [0x200bb6c] (130,128,3) || the power storage unit lost power and turned off
+00:13:48 [0x200ba8d] (97,125,3) || the power storage unit lost power and turned off
+00:13:48 [0x200ada6] (141,59,3) || the backup power storage unit lost power and turned off
+00:13:48 [0x200ad5e] (140,64,3) || the power storage unit lost power and turned off
+00:13:48 [0x200ad50] (140,68,3) || the power storage unit lost power and turned off
+00:13:48 [0x20093fd] (196,79,2) || the power storage unit lost power and turned off
+00:13:48 [0x20090a2] (77,82,2) || the power storage unit lost power and turned off
+00:13:48 [0x2005b2b] (186,151,2) || the power storage unit lost power and turned off
+00:13:48 [0x2005b21] (180,151,2) || the power storage unit lost power and turned off
+00:13:48 [0x200545f] (162,161,2) || the power storage unit lost power and turned off
+00:13:48 [0x20052ec] (65,164,2) || the power storage unit lost power and turned off
+00:13:55 [0x2009056] (151,83,2) || the power storage unit lost power and turned off
diff --git a/data/logs/2019/12/04/round-00.12.46/supermatter.html b/data/logs/2019/12/04/round-00.12.46/supermatter.html new file mode 100644 index 00000000..a723ceb3 --- /dev/null +++ b/data/logs/2019/12/04/round-00.12.46/supermatter.html @@ -0,0 +1 @@ +00:13:03 [0x2009ada] (113,66,2) || the supermatter crystal has been created.
diff --git a/data/logs/2019/12/04/round-00.12.46/telecomms.log b/data/logs/2019/12/04/round-00.12.46/telecomms.log new file mode 100644 index 00000000..734693a2 --- /dev/null +++ b/data/logs/2019/12/04/round-00.12.46/telecomms.log @@ -0,0 +1,27 @@ +[2019-12-04 05:12:46.879] Starting up round ID . + - ------------------------- +[2019-12-04 05:13:47.870] TCOMMS: The �Automated Announcement System [Common] (spans: robot ) "Alessandra Joghs has signed up as Chief Medical Officer" (language: Galactic Common) (Telecomms Control Room (107, 93, 2)) +[2019-12-04 05:13:54.985] TCOMMS: The �Automated Announcement System [Medical] (spans: robot ) "Alessandra Joghs, Chief Medical Officer, is the department head." (language: Galactic Common) (Telecomms Control Room (107, 93, 2)) +[2019-12-04 05:13:57.098] TCOMMS: *no key*/(Poly) [Engineering] (spans: ) "WHO TOOK THE DAMN HARDSUITS?" (language: Galactic Common) (Chief Engineer's Office (117, 83, 2)) +[2019-12-04 05:14:11.181] TCOMMS: *no key*/(Poly) [Engineering] (spans: ) "OH GOD ITS ABOUT TO DELAMINATE CALL THE SHUTTLE" (language: Galactic Common) (Chief Engineer's Office (116, 83, 2)) +[2019-12-04 05:14:19.180] TCOMMS: *no key*/(Poly) [Engineering] (spans: ) "Wire the solars, you lazy bums!" (language: Galactic Common) (Chief Engineer's Office (115, 81, 2)) +[2019-12-04 05:14:41.179] TCOMMS: *no key*/(Poly) [Engineering] (spans: ) "WHO TOOK THE DAMN HARDSUITS?" (language: Galactic Common) (Chief Engineer's Office (115, 81, 2)) +[2019-12-04 05:16:39.176] TCOMMS: *no key*/(Poly) [Engineering] (spans: ) "Poly wanna cracker!" (language: Galactic Common) (Chief Engineer's Office (115, 81, 2)) +[2019-12-04 05:16:51.175] TCOMMS: *no key*/(Poly) [Engineering] (spans: ) "OH GOD ITS ABOUT TO DELAMINATE CALL THE SHUTTLE" (language: Galactic Common) (Chief Engineer's Office (115, 81, 2)) +[2019-12-04 05:16:53.178] TCOMMS: *no key*/(Poly) [Engineering] (spans: ) "OH GOD ITS ABOUT TO DELAMINATE CALL THE SHUTTLE" (language: Galactic Common) (Chief Engineer's Office (115, 81, 2)) +[2019-12-04 05:17:05.176] TCOMMS: *no key*/(Poly) [Engineering] (spans: ) "Wire the solars, you lazy bums!" (language: Galactic Common) (Chief Engineer's Office (115, 81, 2)) +[2019-12-04 05:17:49.179] TCOMMS: *no key*/(Poly) [Engineering] (spans: ) "Wire the solars, you lazy bums!" (language: Galactic Common) (Chief Engineer's Office (115, 81, 2)) +[2019-12-04 05:17:59.175] TCOMMS: *no key*/(Poly) [Engineering] (spans: ) "Check the crystal, you chucklefucks!" (language: Galactic Common) (Chief Engineer's Office (116, 79, 2)) +[2019-12-04 05:18:07.178] TCOMMS: *no key*/(Poly) [Engineering] (spans: ) "Check the crystal, you chucklefucks!" (language: Galactic Common) (Chief Engineer's Office (116, 79, 2)) +[2019-12-04 05:18:39.175] TCOMMS: *no key*/(Poly) [Engineering] (spans: ) "I have lived many lives!" (language: Galactic Common) (Chief Engineer's Office (115, 81, 2)) +[2019-12-04 05:19:13.175] TCOMMS: *no key*/(Poly) [Engineering] (spans: ) "Check the crystal, you chucklefucks!" (language: Galactic Common) (Chief Engineer's Office (116, 79, 2)) +[2019-12-04 05:21:01.175] TCOMMS: *no key*/(Poly) [Engineering] (spans: ) "WHO TOOK THE DAMN HARDSUITS?" (language: Galactic Common) (Chief Engineer's Office (115, 81, 2)) +[2019-12-04 05:21:53.175] TCOMMS: *no key*/(Poly) [Engineering] (spans: ) "Wire the solars, you lazy bums!" (language: Galactic Common) (Chief Engineer's Office (116, 79, 2)) +[2019-12-04 05:22:05.176] TCOMMS: *no key*/(Poly) [Engineering] (spans: ) "Wire the solars, you lazy bums!" (language: Galactic Common) (Chief Engineer's Office (116, 81, 2)) +[2019-12-04 05:22:19.176] TCOMMS: *no key*/(Poly) [Engineering] (spans: ) "Check the crystal, you chucklefucks!" (language: Galactic Common) (Chief Engineer's Office (118, 80, 2)) +[2019-12-04 05:22:49.175] TCOMMS: *no key*/(Poly) [Engineering] (spans: ) "Check the crystal, you chucklefucks!" (language: Galactic Common) (Chief Engineer's Office (115, 81, 2)) +[2019-12-04 05:23:07.177] TCOMMS: *no key*/(Poly) [Engineering] (spans: ) "Wire the solars, you lazy bums!" (language: Galactic Common) (Chief Engineer's Office (115, 81, 2)) +[2019-12-04 05:23:08.090] TCOMMS: The cloning pod [Medical] (spans: robot ) "The cloning cycle is complete." (language: Galactic Common) (Genetics Lab (155, 113, 2)) +[2019-12-04 05:23:15.176] TCOMMS: *no key*/(Poly) [Engineering] (spans: ) "OH GOD ITS ABOUT TO DELAMINATE CALL THE SHUTTLE" (language: Galactic Common) (Chief Engineer's Office (116, 79, 2)) +[2019-12-04 05:23:19.176] TCOMMS: *no key*/(Poly) [Engineering] (spans: ) "OH GOD ITS ABOUT TO DELAMINATE CALL THE SHUTTLE" (language: Galactic Common) (Chief Engineer's Office (116, 79, 2)) +[2019-12-04 05:23:21.174] TCOMMS: *no key*/(Poly) [Engineering] (spans: ) "Wire the solars, you lazy bums!" (language: Galactic Common) (Chief Engineer's Office (116, 79, 2)) From c8ecea5a900a664ae3bb2416438fb4acc240a629 Mon Sep 17 00:00:00 2001 From: Toast Date: Wed, 4 Dec 2019 00:26:22 -0500 Subject: [PATCH 09/11] Revert "So far still broken" This reverts commit 7c2291dca225f5c9b86f4f4ead32600cfc03c8c1. --- .../logs/2019/12/03/round-23.40.49/cargo.html | 1 - .../2019/12/03/round-23.40.49/cloning.log | 1 - .../2019/12/03/round-23.40.49/initialize.log | 877 ---- .../2019/12/03/round-23.40.49/newscaster.json | 1 - .../2019/12/03/round-23.40.49/overlay.log | 650 --- .../2019/12/03/round-23.40.49/singulo.html | 9 - .../logs/2019/12/03/round-23.56.34/attack.log | 15 - .../logs/2019/12/03/round-23.56.34/cargo.html | 1 - .../2019/12/03/round-23.56.34/cloning.log | 6 - .../12/03/round-23.56.34/config_error.log | 12 - data/logs/2019/12/03/round-23.56.34/game.log | 333 -- .../2019/12/03/round-23.56.34/gravity.html | 6 - data/logs/2019/12/03/round-23.56.34/hrefs.log | 24 - .../2019/12/03/round-23.56.34/initialize.log | 835 ---- .../2019/12/03/round-23.56.34/job_debug.log | 2 - .../2019/12/03/round-23.56.34/manifest.log | 3 - .../2019/12/03/round-23.56.34/newscaster.json | 1 - .../2019/12/03/round-23.56.34/overlay.log | 684 --- data/logs/2019/12/03/round-23.56.34/pda.log | 2 - data/logs/2019/12/03/round-23.56.34/qdel.log | 3658 ----------------- .../2019/12/03/round-23.56.34/runtime.log | 133 - .../2019/12/03/round-23.56.34/singulo.html | 10 - .../12/03/round-23.56.34/supermatter.html | 1 - .../2019/12/03/round-23.56.34/telecomms.log | 37 - .../logs/2019/12/04/round-00.12.46/attack.log | 4 - .../logs/2019/12/04/round-00.12.46/cargo.html | 1 - .../2019/12/04/round-00.12.46/cloning.log | 36 - .../12/04/round-00.12.46/config_error.log | 12 - data/logs/2019/12/04/round-00.12.46/game.log | 257 -- .../2019/12/04/round-00.12.46/gravity.html | 6 - data/logs/2019/12/04/round-00.12.46/hrefs.log | 23 - .../2019/12/04/round-00.12.46/job_debug.log | 2 - .../2019/12/04/round-00.12.46/manifest.log | 3 - data/logs/2019/12/04/round-00.12.46/pda.log | 2 - data/logs/2019/12/04/round-00.12.46/qdel.log | 2 - .../2019/12/04/round-00.12.46/runtime.log | 64 - .../2019/12/04/round-00.12.46/singulo.html | 13 - .../12/04/round-00.12.46/supermatter.html | 1 - .../2019/12/04/round-00.12.46/telecomms.log | 27 - 39 files changed, 7755 deletions(-) delete mode 100644 data/logs/2019/12/03/round-23.40.49/cargo.html delete mode 100644 data/logs/2019/12/03/round-23.40.49/cloning.log delete mode 100644 data/logs/2019/12/03/round-23.40.49/initialize.log delete mode 100644 data/logs/2019/12/03/round-23.40.49/newscaster.json delete mode 100644 data/logs/2019/12/03/round-23.40.49/overlay.log delete mode 100644 data/logs/2019/12/03/round-23.40.49/singulo.html delete mode 100644 data/logs/2019/12/03/round-23.56.34/attack.log delete mode 100644 data/logs/2019/12/03/round-23.56.34/cargo.html delete mode 100644 data/logs/2019/12/03/round-23.56.34/cloning.log delete mode 100644 data/logs/2019/12/03/round-23.56.34/config_error.log delete mode 100644 data/logs/2019/12/03/round-23.56.34/game.log delete mode 100644 data/logs/2019/12/03/round-23.56.34/gravity.html delete mode 100644 data/logs/2019/12/03/round-23.56.34/hrefs.log delete mode 100644 data/logs/2019/12/03/round-23.56.34/initialize.log delete mode 100644 data/logs/2019/12/03/round-23.56.34/job_debug.log delete mode 100644 data/logs/2019/12/03/round-23.56.34/manifest.log delete mode 100644 data/logs/2019/12/03/round-23.56.34/newscaster.json delete mode 100644 data/logs/2019/12/03/round-23.56.34/overlay.log delete mode 100644 data/logs/2019/12/03/round-23.56.34/pda.log delete mode 100644 data/logs/2019/12/03/round-23.56.34/qdel.log delete mode 100644 data/logs/2019/12/03/round-23.56.34/runtime.log delete mode 100644 data/logs/2019/12/03/round-23.56.34/singulo.html delete mode 100644 data/logs/2019/12/03/round-23.56.34/supermatter.html delete mode 100644 data/logs/2019/12/03/round-23.56.34/telecomms.log delete mode 100644 data/logs/2019/12/04/round-00.12.46/attack.log delete mode 100644 data/logs/2019/12/04/round-00.12.46/cargo.html delete mode 100644 data/logs/2019/12/04/round-00.12.46/cloning.log delete mode 100644 data/logs/2019/12/04/round-00.12.46/config_error.log delete mode 100644 data/logs/2019/12/04/round-00.12.46/game.log delete mode 100644 data/logs/2019/12/04/round-00.12.46/gravity.html delete mode 100644 data/logs/2019/12/04/round-00.12.46/hrefs.log delete mode 100644 data/logs/2019/12/04/round-00.12.46/job_debug.log delete mode 100644 data/logs/2019/12/04/round-00.12.46/manifest.log delete mode 100644 data/logs/2019/12/04/round-00.12.46/pda.log delete mode 100644 data/logs/2019/12/04/round-00.12.46/qdel.log delete mode 100644 data/logs/2019/12/04/round-00.12.46/runtime.log delete mode 100644 data/logs/2019/12/04/round-00.12.46/singulo.html delete mode 100644 data/logs/2019/12/04/round-00.12.46/supermatter.html delete mode 100644 data/logs/2019/12/04/round-00.12.46/telecomms.log diff --git a/data/logs/2019/12/03/round-23.40.49/cargo.html b/data/logs/2019/12/03/round-23.40.49/cargo.html deleted file mode 100644 index 73a4f30f..00000000 --- a/data/logs/2019/12/03/round-23.40.49/cargo.html +++ /dev/null @@ -1 +0,0 @@ -23:41:36 [0x2026007] (152,108,1) || the supply shuttle Shuttle contents sold for 0 credits. Contents: /list Message: none.
diff --git a/data/logs/2019/12/03/round-23.40.49/cloning.log b/data/logs/2019/12/03/round-23.40.49/cloning.log deleted file mode 100644 index 03bc7bc5..00000000 --- a/data/logs/2019/12/03/round-23.40.49/cloning.log +++ /dev/null @@ -1 +0,0 @@ -[2019-12-04 04:42:33.891] CLONING: Autoprocess added the record of BigFatAnimeTiddies/(Alessandra Joghs) to the cloning console at Genetics Lab (154, 113, 2). diff --git a/data/logs/2019/12/03/round-23.40.49/initialize.log b/data/logs/2019/12/03/round-23.40.49/initialize.log deleted file mode 100644 index b6c65287..00000000 --- a/data/logs/2019/12/03/round-23.40.49/initialize.log +++ /dev/null @@ -1,877 +0,0 @@ -Path : /mob/dview -- Didn't call atom/Initialize() -Path : /obj/item/clothing/mask/breath -- Didn't return an Initialize hint -Path : /obj/item/clothing/mask/cigarette/cigar/cohiba -- Didn't return an Initialize hint -Path : /obj/item/clothing/mask/cigarette/cigar/havana -- Didn't return an Initialize hint -Path : /obj/item/clothing/mask/cigarette/cigar -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/color/red -- Didn't return an Initialize hint -Path : /obj/item/clothing/shoes/sneakers/brown -- Didn't return an Initialize hint -Path : /obj/item/clothing/suit/armor/vest -- Didn't return an Initialize hint -Path : /obj/item/clothing/head/helmet/swat -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/color/green -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/jabroni -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/geisha -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/kilt -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/roman -- Didn't return an Initialize hint -Path : /obj/item/clothing/suit/armor/tdome/red -- Didn't return an Initialize hint -Path : /obj/item/clothing/head/helmet/thunderdome -- Didn't return an Initialize hint -Path : /obj/item/clothing/suit/armor/tdome/green -- Didn't return an Initialize hint -Path : /obj/item/clothing/mask/surgical -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/plasmaman -- Didn't return an Initialize hint -Path : /obj/item/clothing/head/helmet/space/plasmaman -- Didn't return an Initialize hint -Path : /obj/item/clothing/head/chefhat -- Didn't return an Initialize hint -Path : /obj/item/clothing/suit/apron/chef -- Didn't return an Initialize hint -Path : /obj/item/clothing/accessory/medal/gold -- Didn't return an Initialize hint -Path : /obj/item/clothing/accessory/medal -- Didn't return an Initialize hint -Path : /obj/structure/closet/secure_closet/freezer/meat -- Didn't return an Initialize hint -Path : /obj/structure/closet/secure_closet/freezer/fridge -- Didn't return an Initialize hint -Path : /obj/structure/closet/secure_closet/freezer/kitchen -- Didn't return an Initialize hint -Path : /obj/item/clothing/accessory/lawyers_badge -- Didn't return an Initialize hint -Path : /obj/item/clothing/accessory/medal/silver -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/waiter -- Didn't return an Initialize hint -Path : /obj/item/clothing/accessory/waistcoat -- Didn't return an Initialize hint -Path : /obj/item/clothing/head/soft/mime -- Didn't return an Initialize hint -Path : /obj/item/clothing/suit/toggle/chef -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/rank/chef -- Didn't return an Initialize hint -Path : /obj/item/clothing/suit/wizrobe/black -- Didn't return an Initialize hint -Path : /obj/item/clothing/head/wizard/black -- Didn't return an Initialize hint -Path : /obj/item/clothing/head/helmet/sec -- Didn't return an Initialize hint -Path : /obj/item/clothing/glasses/hud/security/sunglasses -- Didn't return an Initialize hint -Path : /obj/item/clothing/head/helmet/swat/nanotrasen -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/syndicate -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/syndicate/skirt -- Didn't return an Initialize hint -Path : /obj/item/clothing/shoes/sneakers/black -- Didn't return an Initialize hint -Path : /obj/item/clothing/glasses/night -- Didn't return an Initialize hint -Path : /obj/item/clothing/mask/gas -- Didn't return an Initialize hint -Path : /obj/item/clothing/shoes/sandal/marisa -- Didn't return an Initialize hint -Path : /obj/item/clothing/suit/wizrobe/marisa -- Didn't return an Initialize hint -Path : /obj/item/clothing/head/wizard/marisa -- Didn't return an Initialize hint -Path : /obj/item/clothing/suit/wizrobe/red -- Didn't return an Initialize hint -Path : /obj/item/clothing/head/wizard/red -- Didn't return an Initialize hint -Path : /obj/item/clothing/shoes/sandal/magic -- Didn't return an Initialize hint -Path : /obj/item/clothing/gloves/color/latex -- Didn't return an Initialize hint -Path : /obj/item/clothing/suit/wizrobe/magusblue -- Didn't return an Initialize hint -Path : /obj/item/clothing/head/wizard/magus -- Didn't return an Initialize hint -Path : /obj/item/clothing/suit/wizrobe/magusred -- Didn't return an Initialize hint -Path : /obj/item/clothing/shoes/magboots -- Didn't return an Initialize hint -Path : /obj/item/clothing/ears/earmuffs -- Didn't return an Initialize hint -Path : /obj/item/clothing/head/helmet/space/hardsuit/deathsquad -- Didn't return an Initialize hint -Path : /obj/item/clothing/suit/space/hardsuit/deathsquad -- Didn't return an Initialize hint -Path : /obj/item/clothing/gloves/combat -- Didn't return an Initialize hint -Path : /obj/item/clothing/shoes/combat/swat -- Didn't return an Initialize hint -Path : /obj/item/clothing/mask/gas/sechailer/swat -- Didn't return an Initialize hint -Path : /obj/item/clothing/accessory/medal/gold/captain -- Didn't return an Initialize hint -Path : /obj/item/clothing/accessory/medal/silver/valor -- Didn't return an Initialize hint -Path : /obj/item/clothing/accessory/medal/silver/security -- Didn't return an Initialize hint -Path : /obj/item/clothing/accessory/medal/bronze_heart -- Didn't return an Initialize hint -Path : /obj/item/clothing/accessory/medal/plasma/nobel_science -- Didn't return an Initialize hint -Path : /obj/item/clothing/accessory/medal/conduct -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/rank/curator/treasure_hunter -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/skirt/black -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/shorts/black -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/pants/track -- Didn't return an Initialize hint -Path : /obj/item/clothing/accessory/armband/deputy -- Didn't return an Initialize hint -Path : /obj/item/clothing/shoes/jackboots -- Didn't return an Initialize hint -Path : /obj/item/clothing/shoes/laceup -- Didn't return an Initialize hint -Path : /obj/item/clothing/neck/stripedredscarf -- Didn't return an Initialize hint -Path : /obj/item/clothing/neck/tie/red -- Didn't return an Initialize hint -Path : /obj/item/clothing/head/helmet/space/beret -- Didn't return an Initialize hint -Path : /obj/item/clothing/suit/curator -- Didn't return an Initialize hint -Path : /obj/item/clothing/suit/space/officer -- Didn't return an Initialize hint -Path : /obj/item/clothing/gloves/fingerless -- Didn't return an Initialize hint -Path : /obj/item/clothing/gloves/color/black -- Didn't return an Initialize hint -Path : /obj/item/clothing/glasses/eyepatch -- Didn't return an Initialize hint -Path : /obj/item/clothing/head/hooded/winterhood/cargo -- Didn't return an Initialize hint -Path : /obj/item/clothing/suit/hooded/wintercoat/cargo -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/rank/cargotech -- Didn't return an Initialize hint -Path : /obj/item/clothing/head/soft -- Didn't return an Initialize hint -Path : /obj/item/clothing/neck/cloak/qm -- Didn't return an Initialize hint -Path : /obj/item/clothing/head/beret/qm -- Didn't return an Initialize hint -Path : /obj/item/clothing/accessory/medal/ribbon/cargo -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/rank/cargo -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/rank/cargo/skirt -- Didn't return an Initialize hint -Path : /obj/item/clothing/suit/fire/firefighter -- Didn't return an Initialize hint -Path : /obj/item/clothing/head/hooded/winterhood/qm -- Didn't return an Initialize hint -Path : /obj/item/clothing/suit/hooded/wintercoat/qm -- Didn't return an Initialize hint -Path : /obj/item/clothing/suit/judgerobe -- Didn't return an Initialize hint -Path : /obj/item/clothing/head/powdered_wig -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/lawyer/female -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/lawyer/black -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/lawyer/red -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/lawyer/bluesuit -- Didn't return an Initialize hint -Path : /obj/item/clothing/suit/toggle/lawyer -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/lawyer/purpsuit -- Didn't return an Initialize hint -Path : /obj/item/clothing/suit/toggle/lawyer/purple -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/lawyer/blacksuit -- Didn't return an Initialize hint -Path : /obj/item/clothing/suit/toggle/lawyer/black -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/trek/medsci -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/trek/command -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/trek/engsec -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/schoolgirl/green -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/schoolgirl -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/schoolgirl/orange -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/schoolgirl/red -- Didn't return an Initialize hint -Path : /obj/item/clothing/suit/armor/riot/knight/blue -- Didn't return an Initialize hint -Path : /obj/item/clothing/head/helmet/knight/blue -- Didn't return an Initialize hint -Path : /obj/item/clothing/head/crown/fancy -- Didn't return an Initialize hint -Path : /obj/item/clothing/suit/armor/riot/knight/red -- Didn't return an Initialize hint -Path : /obj/item/clothing/head/helmet/knight/red -- Didn't return an Initialize hint -Path : /obj/item/clothing/suit/nun -- Didn't return an Initialize hint -Path : /obj/item/clothing/head/nun_hood -- Didn't return an Initialize hint -Path : /obj/item/clothing/suit/holidaypriest -- Didn't return an Initialize hint -Path : /obj/item/clothing/suit/beekeeper_suit -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/color/white -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/skirt/color/white -- Didn't return an Initialize hint -Path : /obj/item/clothing/shoes/sneakers/white -- Didn't return an Initialize hint -Path : /obj/item/clothing/head/beekeeper_head -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/color/rainbow -- Didn't return an Initialize hint -Path : /obj/item/clothing/glasses/sunglasses -- Didn't return an Initialize hint -Path : /obj/item/clothing/gloves/color/latex/nitrile -- Didn't return an Initialize hint -Path : /obj/item/clothing/suit/apron/surgical -- Didn't return an Initialize hint -Path : /obj/item/clothing/mask/cigarette/pipe -- Didn't return an Initialize hint -Path : /obj/item/clothing/suit/bomb_suit -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/color/black -- Didn't return an Initialize hint -Path : /obj/item/clothing/head/bomb_hood -- Didn't return an Initialize hint -Path : /obj/item/clothing/suit/bomb_suit/security -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/rank/security -- Didn't return an Initialize hint -Path : /obj/item/clothing/head/bomb_hood/security -- Didn't return an Initialize hint -Path : /obj/item/clothing/suit/armor/bulletproof -- Didn't return an Initialize hint -Path : /obj/item/clothing/head/helmet/alt -- Didn't return an Initialize hint -Path : /obj/item/clothing/suit/armor/riot -- Didn't return an Initialize hint -Path : /obj/item/clothing/head/helmet/riot -- Didn't return an Initialize hint -Path : /obj/item/clothing/suit/armor/laserproof -- Didn't return an Initialize hint -Path : /obj/item/clothing/suit/bio_suit/security -- Didn't return an Initialize hint -Path : /obj/item/clothing/head/bio_hood/security -- Didn't return an Initialize hint -Path : /obj/item/clothing/head/helmet/space/hardsuit/security/hos -- Didn't return an Initialize hint -Path : /obj/item/clothing/suit/space/hardsuit/security/hos -- Didn't return an Initialize hint -Path : /obj/item/clothing/mask/gas/sechailer -- Didn't return an Initialize hint -Path : /obj/item/clothing/neck/cloak/hos -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/hosparadefem -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/hosparademale -- Didn't return an Initialize hint -Path : /obj/item/clothing/suit/armor/vest/leather -- Didn't return an Initialize hint -Path : /obj/item/clothing/suit/armor/hos -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/rank/head_of_security/skirt -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/rank/head_of_security/alt -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/rank/head_of_security/alt/skirt -- Didn't return an Initialize hint -Path : /obj/item/clothing/head/HoS -- Didn't return an Initialize hint -Path : /obj/item/clothing/glasses/hud/security/sunglasses/eyepatch -- Didn't return an Initialize hint -Path : /obj/item/clothing/glasses/hud/security/sunglasses/gars/supergars -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/rank/head_of_security/grey -- Didn't return an Initialize hint -Path : /obj/item/clothing/head/hooded/winterhood/hos -- Didn't return an Initialize hint -Path : /obj/item/clothing/suit/hooded/wintercoat/hos -- Didn't return an Initialize hint -Path : /obj/item/clothing/head/helmet/space/hardsuit/security -- Didn't return an Initialize hint -Path : /obj/item/clothing/suit/space/hardsuit/security -- Didn't return an Initialize hint -Path : /obj/item/clothing/suit/straight_jacket -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/rank/prisoner -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/rank/prisoner/skirt -- Didn't return an Initialize hint -Path : /obj/item/clothing/shoes/sneakers/orange -- Didn't return an Initialize hint -Path : /obj/item/clothing/head/helmet -- Didn't return an Initialize hint -Path : /obj/item/clothing/suit/armor/vest/warden -- Didn't return an Initialize hint -Path : /obj/item/clothing/head/warden -- Didn't return an Initialize hint -Path : /obj/item/clothing/head/warden/drill -- Didn't return an Initialize hint -Path : /obj/item/clothing/head/beret/sec/navywarden -- Didn't return an Initialize hint -Path : /obj/item/clothing/suit/armor/vest/warden/alt -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/rank/warden/navyblue -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/rank/warden/skirt -- Didn't return an Initialize hint -Path : /obj/item/clothing/gloves/krav_maga/sec -- Didn't return an Initialize hint -Path : /obj/item/clothing/head/hardhat -- Didn't return an Initialize hint -Path : /obj/item/clothing/suit/jacket -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/polychromic/jumpsuit -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/polychromic/shirt -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/polychromic/kilt -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/polychromic/skirt -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/polychromic/shorts -- Didn't return an Initialize hint -Path : /obj/item/clothing/mask/bandana/red -- Didn't return an Initialize hint -Path : /obj/item/clothing/mask/bandana/blue -- Didn't return an Initialize hint -Path : /obj/item/clothing/mask/bandana/gold -- Didn't return an Initialize hint -Path : /obj/item/clothing/head/hooded/winterhood -- Didn't return an Initialize hint -Path : /obj/item/clothing/suit/hooded/wintercoat -- Didn't return an Initialize hint -Path : /obj/item/clothing/shoes/winterboots -- Didn't return an Initialize hint -Path : /obj/item/clothing/head/hardhat/red -- Didn't return an Initialize hint -Path : /obj/item/clothing/glasses/meson -- Didn't return an Initialize hint -Path : /obj/item/clothing/shoes/kindleKicks -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/shorts/purple -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/shorts/grey -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/shorts/red -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/shorts/blue -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/shorts/green -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/polychromic/shortpants -- Didn't return an Initialize hint -Path : /obj/item/clothing/gloves/boxing/blue -- Didn't return an Initialize hint -Path : /obj/item/clothing/gloves/boxing/green -- Didn't return an Initialize hint -Path : /obj/item/clothing/gloves/boxing/yellow -- Didn't return an Initialize hint -Path : /obj/item/clothing/gloves/boxing -- Didn't return an Initialize hint -Path : /obj/item/clothing/mask/luchador -- Didn't return an Initialize hint -Path : /obj/item/clothing/mask/luchador/rudos -- Didn't return an Initialize hint -Path : /obj/item/clothing/mask/luchador/tecnicos -- Didn't return an Initialize hint -Path : /obj/item/clothing/suit/bluetag -- Didn't return an Initialize hint -Path : /obj/item/clothing/head/helmet/bluetaghelm -- Didn't return an Initialize hint -Path : /obj/item/clothing/suit/redtag -- Didn't return an Initialize hint -Path : /obj/item/clothing/head/helmet/redtaghelm -- Didn't return an Initialize hint -Path : /obj/item/clothing/head/welding -- Didn't return an Initialize hint -Path : /obj/item/clothing/glasses/regular -- Didn't return an Initialize hint -Path : /obj/item/clothing/gloves/color/red -- Didn't return an Initialize hint -Path : /obj/item/clothing/gloves/color/fyellow -- Didn't return an Initialize hint -Path : /obj/item/clothing/mask/balaclava -- Didn't return an Initialize hint -Path : /obj/item/clothing/head/hooded/flashsuit -- Didn't return an Initialize hint -Path : /obj/item/clothing/suit/hooded/flashsuit -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/pj/red -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/pj/blue -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/rank/mailman -- Didn't return an Initialize hint -Path : /obj/item/clothing/head/mailman -- Didn't return an Initialize hint -Path : /obj/item/clothing/suit/hazardvest -- Didn't return an Initialize hint -Path : /obj/item/clothing/head/that -- Didn't return an Initialize hint -Path : /obj/item/clothing/suit/space/eva -- Didn't return an Initialize hint -Path : /obj/item/clothing/head/helmet/space/eva -- Didn't return an Initialize hint -Path : /obj/item/clothing/head/bearpelt -- Didn't return an Initialize hint -Path : /obj/item/clothing/suit/bio_suit/scientist -- Didn't return an Initialize hint -Path : /obj/item/clothing/head/bio_hood/scientist -- Didn't return an Initialize hint -Path : /obj/structure/closet/secure_closet/freezer/cream_pie -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/burial -- Didn't return an Initialize hint -Path : /obj/item/clothing/mask/cigarette/space_cigarette -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/suit_jacket/red -- Didn't return an Initialize hint -Path : /obj/item/clothing/gloves/color/purple -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/skirt/color/green -- Didn't return an Initialize hint -Path : /obj/item/clothing/mask/bandana/green -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/color/grey -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/skirt/color/grey -- Didn't return an Initialize hint -Path : /obj/item/clothing/head/soft/grey -- Didn't return an Initialize hint -Path : /obj/item/clothing/mask/bandana/black -- Didn't return an Initialize hint -Path : /obj/item/clothing/accessory/pocketprotector -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/skirt/color/black -- Didn't return an Initialize hint -Path : /obj/item/clothing/head/soft/black -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/rank/det -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/rank/det/skirt -- Didn't return an Initialize hint -Path : /obj/item/clothing/suit/det_suit -- Didn't return an Initialize hint -Path : /obj/item/clothing/head/fedora/det_hat -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/rank/det/grey -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/rank/det/grey/skirt -- Didn't return an Initialize hint -Path : /obj/item/clothing/suit/det_suit/grey -- Didn't return an Initialize hint -Path : /obj/item/clothing/head/fedora -- Didn't return an Initialize hint -Path : /obj/item/clothing/suit/armor/vest/det_suit -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/suit_jacket/female -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/suit_jacket/really_black -- Didn't return an Initialize hint -Path : /obj/item/clothing/suit/ianshirt -- Didn't return an Initialize hint -Path : /obj/item/clothing/gloves/color/rainbow -- Didn't return an Initialize hint -Path : /obj/item/clothing/head/soft/rainbow -- Didn't return an Initialize hint -Path : /obj/item/clothing/shoes/sneakers/rainbow -- Didn't return an Initialize hint -Path : /obj/item/clothing/glasses/welding -- Didn't return an Initialize hint -Path : /obj/item/clothing/head/helmet/space/hardsuit/captain -- Didn't return an Initialize hint -Path : /obj/item/clothing/suit/space/hardsuit/captain -- Didn't return an Initialize hint -Path : /obj/item/clothing/glasses/science -- Didn't return an Initialize hint -Path : /obj/item/clothing/accessory/armband/medblue -- Didn't return an Initialize hint -Path : /obj/item/clothing/head/hooded/winterhood/captain -- Didn't return an Initialize hint -Path : /obj/item/clothing/suit/hooded/wintercoat/captain -- Didn't return an Initialize hint -Path : /obj/item/clothing/neck/cloak/cap -- Didn't return an Initialize hint -Path : /obj/item/clothing/neck/petcollar -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/rank/captain -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/rank/captain/skirt -- Didn't return an Initialize hint -Path : /obj/item/clothing/suit/armor/vest/capcarapace -- Didn't return an Initialize hint -Path : /obj/item/clothing/head/caphat -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/captainparade -- Didn't return an Initialize hint -Path : /obj/item/clothing/suit/armor/vest/capcarapace/alt -- Didn't return an Initialize hint -Path : /obj/item/clothing/head/caphat/parade -- Didn't return an Initialize hint -Path : /obj/item/clothing/head/caphat/beret -- Didn't return an Initialize hint -Path : /obj/item/clothing/suit/captunic -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/rank/captain/femformal -- Didn't return an Initialize hint -Path : /obj/item/clothing/glasses/sunglasses/gar/supergar -- Didn't return an Initialize hint -Path : /obj/item/clothing/gloves/color/captain -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/rank/chemist -- Didn't return an Initialize hint -Path : /obj/item/clothing/suit/toggle/labcoat/chemist -- Didn't return an Initialize hint -Path : /obj/item/clothing/neck/stethoscope -- Didn't return an Initialize hint -Path : /obj/item/clothing/neck/cloak/hop -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/rank/head_of_personnel -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/rank/head_of_personnel/skirt -- Didn't return an Initialize hint -Path : /obj/item/clothing/head/hopcap -- Didn't return an Initialize hint -Path : /obj/item/clothing/head/hopcap/beret -- Didn't return an Initialize hint -Path : /obj/item/clothing/suit/armor/vest/alt -- Didn't return an Initialize hint -Path : /obj/item/clothing/head/hooded/winterhood/hop -- Didn't return an Initialize hint -Path : /obj/item/clothing/suit/hooded/wintercoat/hop -- Didn't return an Initialize hint -Path : /obj/item/clothing/suit/radiation -- Didn't return an Initialize hint -Path : /obj/item/clothing/head/radiation -- Didn't return an Initialize hint -Path : /obj/item/clothing/mask/facehugger/lamarr -- Didn't return an Initialize hint -Path : /obj/item/clothing/accessory/armband/science -- Didn't return an Initialize hint -Path : /obj/item/clothing/accessory/armband/cargo -- Didn't return an Initialize hint -Path : /obj/item/clothing/head/helmet/space/hardsuit/medical -- Didn't return an Initialize hint -Path : /obj/item/clothing/suit/space/hardsuit/medical -- Didn't return an Initialize hint -Path : /obj/item/clothing/neck/cloak/rd -- Didn't return an Initialize hint -Path : /obj/item/clothing/head/beret/rd -- Didn't return an Initialize hint -Path : /obj/item/clothing/suit/toggle/labcoat -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/rank/research_director -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/rank/research_director/skirt -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/rank/research_director/alt -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/rank/research_director/alt/skirt -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/rank/research_director/turtleneck -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/rank/research_director/turtleneck/skirt -- Didn't return an Initialize hint -Path : /obj/item/clothing/suit/armor/reactive/teleport -- Didn't return an Initialize hint -Path : /obj/item/clothing/head/hooded/winterhood/rd -- Didn't return an Initialize hint -Path : /obj/item/clothing/suit/hooded/wintercoat/rd -- Didn't return an Initialize hint -Path : /obj/item/clothing/head/helmet/space/hardsuit/rd -- Didn't return an Initialize hint -Path : /obj/item/clothing/suit/space/hardsuit/rd -- Didn't return an Initialize hint -Path : /obj/item/clothing/suit/bio_suit/general -- Didn't return an Initialize hint -Path : /obj/item/clothing/head/bio_hood/general -- Didn't return an Initialize hint -Path : /obj/item/clothing/glasses/hud/health -- Didn't return an Initialize hint -Path : /obj/item/clothing/suit/bio_suit/janitor -- Didn't return an Initialize hint -Path : /obj/item/clothing/head/bio_hood/janitor -- Didn't return an Initialize hint -Path : /obj/item/clothing/mask/muzzle -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/rank/vice -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/rank/miner/lavaland -- Didn't return an Initialize hint -Path : /obj/item/clothing/shoes/workboots/mining -- Didn't return an Initialize hint -Path : /obj/item/clothing/head/hooded/winterhood/miner -- Didn't return an Initialize hint -Path : /obj/item/clothing/suit/hooded/wintercoat/miner -- Didn't return an Initialize hint -Path : /obj/item/clothing/mask/breath/medical -- Didn't return an Initialize hint -Path : /obj/item/clothing/neck/cloak/cmo -- Didn't return an Initialize hint -Path : /obj/item/clothing/head/beret/cmo -- Didn't return an Initialize hint -Path : /obj/item/clothing/suit/bio_suit/cmo -- Didn't return an Initialize hint -Path : /obj/item/clothing/head/bio_hood/cmo -- Didn't return an Initialize hint -Path : /obj/item/clothing/suit/toggle/labcoat/cmo -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/rank/chief_medical_officer -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/rank/chief_medical_officer/skirt -- Didn't return an Initialize hint -Path : /obj/item/clothing/accessory/medal/ribbon/medical_doctor -- Didn't return an Initialize hint -Path : /obj/item/clothing/head/hooded/winterhood/cmo -- Didn't return an Initialize hint -Path : /obj/item/clothing/suit/hooded/wintercoat/cmo -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/rank/chief_medical_officer/turtleneck -- Didn't return an Initialize hint -Path : /obj/item/clothing/gloves/color/yellow -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/assistantformal -- Didn't return an Initialize hint -Path : /obj/item/clothing/head/cone -- Didn't return an Initialize hint -Path : /obj/item/clothing/accessory/armband/engine -- Didn't return an Initialize hint -Path : /obj/item/clothing/suit/fire/atmos -- Didn't return an Initialize hint -Path : /obj/item/clothing/head/hardhat/atmos -- Didn't return an Initialize hint -Path : /obj/item/clothing/glasses/meson/engine/tray -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/color/lightpurple -- Didn't return an Initialize hint -Path : /obj/item/clothing/head/helmet/space/hardsuit/engine/atmos -- Didn't return an Initialize hint -Path : /obj/item/clothing/suit/space/hardsuit/engine/atmos -- Didn't return an Initialize hint -Path : /obj/item/clothing/suit/bio_suit/virology -- Didn't return an Initialize hint -Path : /obj/item/clothing/head/bio_hood/virology -- Didn't return an Initialize hint -Path : /obj/structure/closet/secure_closet/freezer/kitchen/maintenance -- Didn't return an Initialize hint -Path : /obj/item/clothing/head/kitty -- Didn't return an Initialize hint -Path : /obj/item/clothing/accessory/maidapron -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/maid -- Didn't return an Initialize hint -Path : /obj/item/clothing/head/helmet/space/hardsuit/engine/elite -- Didn't return an Initialize hint -Path : /obj/item/clothing/suit/space/hardsuit/engine/elite -- Didn't return an Initialize hint -Path : /obj/item/clothing/shoes/magboots/advance -- Didn't return an Initialize hint -Path : /obj/item/clothing/neck/cloak/ce -- Didn't return an Initialize hint -Path : /obj/item/clothing/head/beret/ce -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/rank/chief_engineer -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/rank/chief_engineer/skirt -- Didn't return an Initialize hint -Path : /obj/item/clothing/head/hardhat/white -- Didn't return an Initialize hint -Path : /obj/item/clothing/glasses/meson/engine -- Didn't return an Initialize hint -Path : /obj/item/clothing/accessory/medal/engineer -- Didn't return an Initialize hint -Path : /obj/item/clothing/head/hooded/winterhood/ce -- Didn't return an Initialize hint -Path : /obj/item/clothing/suit/hooded/wintercoat/ce -- Didn't return an Initialize hint -Path : /obj/item/clothing/gloves/color/grey -- Didn't return an Initialize hint -Path : /obj/item/clothing/head/helmet/space/hardsuit/engine -- Didn't return an Initialize hint -Path : /obj/item/clothing/suit/space/hardsuit/engine -- Didn't return an Initialize hint -Path : /obj/item/clothing/accessory/medal/greytide -- Didn't return an Initialize hint -Path : /obj/item/clothing/head/hooded/winterhood/engineering -- Didn't return an Initialize hint -Path : /obj/item/clothing/suit/hooded/wintercoat/engineering -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/rank/engineer -- Didn't return an Initialize hint -Path : /obj/item/clothing/shoes/workboots -- Didn't return an Initialize hint -Path : /obj/item/clothing/head/hooded/explorer -- Didn't return an Initialize hint -Path : /obj/item/clothing/suit/hooded/explorer/standard -- Didn't return an Initialize hint -Path : /obj/item/clothing/mask/gas/explorer -- Didn't return an Initialize hint -Path : /obj/item/clothing/head/helmet/roman/legionnaire -- Didn't return an Initialize hint -Path : /obj/item/clothing/shoes/combat -- Didn't return an Initialize hint -Path : /obj/item/clothing/mask/gas/syndicate -- Didn't return an Initialize hint -Path : /obj/item/clothing/head/helmet/space/hardsuit/syndi -- Didn't return an Initialize hint -Path : /obj/item/clothing/suit/space/hardsuit/syndi -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/rank/clown -- Didn't return an Initialize hint -Path : /obj/item/clothing/shoes/clown_shoes -- Didn't return an Initialize hint -Path : /obj/item/clothing/mask/gas/clown_hat -- Didn't return an Initialize hint -Path : /obj/item/clothing/head/helmet/space/orange -- Didn't return an Initialize hint -Path : /obj/item/clothing/suit/space/orange -- Didn't return an Initialize hint -Path : /obj/item/clothing/shoes/sandal -- Didn't return an Initialize hint -Path : /obj/item/clothing/neck/tie/black -- Didn't return an Initialize hint -Path : /obj/item/clothing/gloves/color/white -- Didn't return an Initialize hint -Path : /obj/item/clothing/head/helmet/space/syndicate/green/dark -- Didn't return an Initialize hint -Path : /obj/item/clothing/suit/space/syndicate/green/dark -- Didn't return an Initialize hint -Path : /obj/item/clothing/glasses/regular/hipster -- Didn't return an Initialize hint -Path : /obj/item/clothing/mask/cigarette/dromedary -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/overalls -- Didn't return an Initialize hint -Path : /obj/item/clothing/suit/apron -- Didn't return an Initialize hint -Path : /obj/structure/closet/secure_closet/freezer -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/rank/centcom_officer -- Didn't return an Initialize hint -Path : /obj/item/clothing/head/helmet/space/nasavoid -- Didn't return an Initialize hint -Path : /obj/item/clothing/suit/space/nasavoid -- Didn't return an Initialize hint -Path : /obj/item/clothing/suit/space/syndicate/orange -- Didn't return an Initialize hint -Path : /obj/item/clothing/head/helmet/space/syndicate/orange -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/soviet -- Didn't return an Initialize hint -Path : /obj/item/clothing/head/ushanka -- Didn't return an Initialize hint -Path : /obj/item/clothing/head/hooded/winterhood/science -- Didn't return an Initialize hint -Path : /obj/item/clothing/suit/hooded/wintercoat/science -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/rank/scientist -- Didn't return an Initialize hint -Path : /obj/item/clothing/suit/toggle/labcoat/science -- Didn't return an Initialize hint -Path : /obj/item/clothing/mask/facehugger/dead -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/pants/classicjeans -- Didn't return an Initialize hint -Path : /obj/item/clothing/neck/scarf -- Didn't return an Initialize hint -Path : /obj/item/clothing/neck/stripedgreenscarf -- Didn't return an Initialize hint -Path : /obj/item/clothing/head/chameleon -- Didn't return an Initialize hint -Path : /obj/item/clothing/suit/chameleon -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/chameleon -- Didn't return an Initialize hint -Path : /obj/item/clothing/shoes/chameleon -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/rank/centcom_commander -- Didn't return an Initialize hint -Path : /obj/item/clothing/head/centhat -- Didn't return an Initialize hint -Path : /obj/item/integrated_circuit/passive/power/chemical_cell -- Didn't return an Initialize hint -Path : /obj/item/integrated_circuit/atmospherics/pump/volume -- Didn't return an Initialize hint -Path : /obj/item/integrated_circuit/atmospherics/pump/vent -- Didn't return an Initialize hint -Path : /obj/item/integrated_circuit/atmospherics/pump/filter -- Didn't return an Initialize hint -Path : /obj/item/integrated_circuit/atmospherics/pump/mixer -- Didn't return an Initialize hint -Path : /obj/item/integrated_circuit/atmospherics/pump -- Didn't return an Initialize hint -Path : /obj/item/integrated_circuit/atmospherics/connector -- Didn't return an Initialize hint -Path : /obj/item/integrated_circuit/atmospherics/tank/large -- Didn't return an Initialize hint -Path : /obj/item/integrated_circuit/atmospherics/tank/freezer/heater -- Didn't return an Initialize hint -Path : /obj/item/integrated_circuit/atmospherics/tank/freezer -- Didn't return an Initialize hint -Path : /obj/item/integrated_circuit/atmospherics/tank -- Didn't return an Initialize hint -Path : /obj/item/integrated_circuit/atmospherics/cooler/heater -- Didn't return an Initialize hint -Path : /obj/item/integrated_circuit/atmospherics/cooler -- Didn't return an Initialize hint -Path : /obj/item/integrated_circuit/atmospherics -- Didn't return an Initialize hint -Path : /obj/item/clothing/suit/space/syndicate -- Didn't return an Initialize hint -Path : /obj/item/clothing/head/helmet/space/syndicate -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/color/yellow -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/rank/medical -- Didn't return an Initialize hint -Path : /obj/item/clothing/head/hooded/winterhood/medical -- Didn't return an Initialize hint -Path : /obj/item/clothing/suit/hooded/wintercoat/medical -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/rank/nursesuit -- Didn't return an Initialize hint -Path : /obj/item/clothing/head/nursehat -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/rank/medical/blue -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/rank/medical/green -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/rank/medical/purple -- Didn't return an Initialize hint -Path : /obj/item/clothing/suit/toggle/labcoat/emt -- Didn't return an Initialize hint -Path : /obj/item/clothing/head/soft/emt -- Didn't return an Initialize hint - diff --git a/data/logs/2019/12/03/round-23.40.49/newscaster.json b/data/logs/2019/12/03/round-23.40.49/newscaster.json deleted file mode 100644 index cbaaa161..00000000 --- a/data/logs/2019/12/03/round-23.40.49/newscaster.json +++ /dev/null @@ -1 +0,0 @@ -{"1":{"channel name":"Station Announcements","author":"SS13","censored":0,"author censored":0,"messages":[{"author":"Central Command","time stamp":"12:19:53","censored":0,"author censored":0,"photo file":"","photo caption":"","body":"Security Report

Thanks to the tireless efforts of our security and intelligence divisions, there are currently no credible threats to Festive Country Eight. All station construction projects have been authorized. Have a secure shift!","comments":[]}]}} diff --git a/data/logs/2019/12/03/round-23.40.49/overlay.log b/data/logs/2019/12/03/round-23.40.49/overlay.log deleted file mode 100644 index 74fb5417..00000000 --- a/data/logs/2019/12/03/round-23.40.49/overlay.log +++ /dev/null @@ -1,650 +0,0 @@ -/turf/closed/mineral/random/volcanic => 140ms (29832) (avg:0.0046929470263421535) -/turf/open/lava/smooth/lava_land_surface => 44ms (9976) (avg:0.0044105853885412216) -/turf/closed/mineral/iron/volcanic => 19ms (3852) (avg:0.0049325027503073215) -/turf/closed/wall => 18ms (2939) (avg:0.0061245323158800602) -/turf/closed/indestructible/riveted/boss => 17ms (3129) (avg:0.0054330457933247089) -/turf/closed/indestructible/riveted => 16ms (3507) (avg:0.0045623038895428181) -/obj/structure/lattice => 14ms (2062) (avg:0.0067895245738327503) -/obj/structure/window/reinforced/fulltile => 13ms (1578) (avg:0.0082382764667272568) -/turf/open/floor/plasteel => 10ms (3809) (avg:0.0026253610849380493) -/turf/closed/wall/r_wall => 10ms (1831) (avg:0.0054614963009953499) -/turf/open/floor/plasteel/dark => 8ms (2303) (avg:0.0034737298265099525) -/obj/machinery/door/airlock/public/glass => 8ms (202) (avg:0.039603959769010544) -/turf/closed/mineral/random/labormineral/volcanic => 7ms (2345) (avg:0.0029850746504962444) -/mob/living/carbon/human => 7ms (17) (avg:0.4117647111415863) -/obj/structure/table => 6ms (517) (avg:0.011605415493249893) -/obj/item/stock_parts/cell/emergency_light => 5ms (942) (avg:0.0053078555501997471) -/turf/closed/mineral/gold/volcanic => 5ms (419) (avg:0.011933173984289169) -/obj/machinery/door/airlock/maintenance => 5ms (175) (avg:0.02857142873108387) -/obj/machinery/door/airlock/maintenance/abandoned => 5ms (65) (avg:0.076923079788684845) -/turf/closed/mineral/plasma/volcanic => 4ms (967) (avg:0.0041365046054124832) -/obj/effect/decal/cleanable/dirt => 4ms (860) (avg:0.0046511627733707428) -/turf/closed/mineral/silver/volcanic => 3ms (514) (avg:0.0058365757577121258) -/turf/closed/mineral/titanium/volcanic => 3ms (467) (avg:0.0064239827916026115) -/obj/machinery/clonepod => 3ms (432) (avg:0.0069444444961845875) -/turf/open/floor/carpet => 3ms (327) (avg:0.0091743115335702896) -/turf/closed/mineral/random => 3ms (319) (avg:0.0094043882563710213) -/obj/machinery/door/airlock/external => 3ms (248) (avg:0.012096773833036423) -/turf/open/floor/plasteel/white => 3ms (232) (avg:0.012931034900248051) -/obj/structure/table/reinforced => 2ms (588) (avg:0.0034013604745268822) -/obj/machinery/light/small => 2ms (526) (avg:0.0038022813387215137) -/turf/closed/mineral => 2ms (513) (avg:0.0038986355066299438) -/turf/closed/wall/mineral/plastitanium => 2ms (185) (avg:0.010810811072587967) -/obj/machinery/door/airlock/centcom => 2ms (147) (avg:0.013605441898107529) -/obj/machinery/door/airlock => 2ms (104) (avg:0.019230769947171211) -/obj/screen/parallax_layer/layer_1 => 2ms (4) (avg:0.5) -/obj/machinery/light => 1ms (1008) (avg:0.00099206354934722185) -/turf/closed/wall/mineral/titanium => 1ms (470) (avg:0.0021276595070958138) -/obj/structure/lattice/catwalk => 1ms (386) (avg:0.0025906735099852085) -/turf/closed/mineral/volcanic/lava_land_surface => 1ms (379) (avg:0.0026385225355625153) -/turf/open/indestructible/hierophant => 1ms (328) (avg:0.0030487803742289543) -/obj/structure/table/wood => 1ms (302) (avg:0.0033112582750618458) -/obj/machinery/firealarm => 1ms (251) (avg:0.0039840638637542725) -/turf/closed/mineral/random/high_chance/volcanic => 1ms (241) (avg:0.0041493778117001057) -/obj/machinery/power/solar => 1ms (240) (avg:0.0041666668839752674) -/turf/open/floor/plating => 1ms (237) (avg:0.0042194090783596039) -/turf/closed/mineral/uranium/volcanic => 1ms (226) (avg:0.0044247787445783615) -/obj/machinery/atmospherics/pipe/manifold/supply/hidden => 1ms (183) (avg:0.0054644807241857052) -/turf/closed/indestructible => 1ms (168) (avg:0.0059523810632526875) -/turf/closed/wall/mineral/titanium/nodiagonal => 1ms (142) (avg:0.007042253389954567) -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden => 1ms (138) (avg:0.0072463769465684891) -/obj/item/stock_parts/cell/upgraded => 1ms (137) (avg:0.0072992700152099133) -/turf/closed/mineral/gibtonite/volcanic => 1ms (133) (avg:0.0075187971815466881) -/turf/closed/indestructible/fakeglass => 1ms (90) (avg:0.011111111380159855) -/obj/item/screwdriver => 1ms (88) (avg:0.011363636702299118) -/obj/machinery/power/solar_control => 1ms (85) (avg:0.011764706112444401) -/obj/structure/table/glass => 1ms (71) (avg:0.014084506779909134) -/obj/item/reagent_containers/glass/beaker/large => 1ms (56) (avg:0.01785714365541935) -/obj/item/reagent_containers/syringe/charcoal => 1ms (50) (avg:0.019999999552965164) -/turf/open/floor/carpet/black => 1ms (48) (avg:0.02083333395421505) -/obj/machinery/door/airlock/command/glass => 1ms (36) (avg:0.02777777798473835) -/obj/item/storage/toolbox/mechanical => 1ms (35) (avg:0.02857142873108387) -/obj/machinery/door/airlock/medical/glass => 1ms (32) (avg:0.03125) -/turf/open/space/basic => 1ms (31) (avg:0.032258063554763794) -/turf/closed/mineral/plasma => 1ms (28) (avg:0.035714287310838699) -/obj/structure/window/paperframe => 1ms (27) (avg:0.037037037312984467) -/mob/living/carbon/human/dummy => 1ms (25) (avg:0.039999999105930328) -/turf/closed/wall/mineral/wood => 1ms (21) (avg:0.0476190485060215) -/obj/machinery/door/airlock/security => 1ms (19) (avg:0.052631579339504242) -/obj/item/storage/crayons => 1ms (16) (avg:0.0625) -/obj/machinery/door/airlock/virology/glass => 1ms (16) (avg:0.0625) -/obj/machinery/power/smes/engineering => 1ms (15) (avg:0.066666670143604279) -/obj/machinery/power/smes/magical => 1ms (10) (avg:0.10000000149011612) -/obj/machinery/door/airlock/engineering/abandoned => 1ms (8) (avg:0.125) -/obj/machinery/computer/bounty => 1ms (6) (avg:0.1666666716337204) -/turf/closed/mineral/gold => 1ms (6) (avg:0.1666666716337204) -/obj/structure/door_assembly/door_assembly_mai => 1ms (4) (avg:0.25) -/obj/item/gun/energy/laser/practice => 1ms (4) (avg:0.25) -/obj/structure/door_assembly/door_assembly_ext => 1ms (1) (avg:1) -/obj/item/storage/box/chemimp => 1ms (1) (avg:1) -/obj/machinery/airalarm => 0ms (313) (avg:0) -/turf/open/space => 0ms (283) (avg:0) -/obj/structure/alien/weeds => 0ms (239) (avg:0) -/turf/open/floor/holofloor => 0ms (156) (avg:0) -/obj/machinery/disposal/bin => 0ms (150) (avg:0) -/turf/closed/wall/mineral/titanium/interior => 0ms (147) (avg:0) -/obj/structure/window/fulltile => 0ms (142) (avg:0) -/turf/closed/indestructible/riveted/uranium => 0ms (131) (avg:0) -/turf/closed/mineral/random/high_chance => 0ms (126) (avg:0) -/obj/item/stock_parts/cell/high/empty => 0ms (120) (avg:0) -/turf/open/indestructible/hierophant/two => 0ms (113) (avg:0) -/obj/item/stock_parts/cell => 0ms (105) (avg:0) -/turf/open/floor/engine => 0ms (97) (avg:0) -/turf/closed/indestructible/riveted/hierophant => 0ms (88) (avg:0) -/obj/item/stock_parts/cell/high => 0ms (86) (avg:0) -/obj/structure/alien/resin/wall => 0ms (83) (avg:0) -/turf/open/floor/carpet/royalblue => 0ms (81) (avg:0) -/obj/machinery/newscaster => 0ms (76) (avg:0) -/obj/structure/window/shuttle => 0ms (74) (avg:0) -/obj/machinery/atmospherics/components/binary/passive_gate => 0ms (72) (avg:0) -/obj/item/wirecutters => 0ms (71) (avg:0) -/turf/open/floor/plasteel/white/corner => 0ms (63) (avg:0) -/obj/structure/closet/emcloset => 0ms (61) (avg:0) -/obj/item/paper_bin => 0ms (60) (avg:0) -/obj/structure/closet => 0ms (58) (avg:0) -/turf/open/floor/plasteel/cafeteria => 0ms (57) (avg:0) -/turf/closed/wall/mineral/diamond => 0ms (56) (avg:0) -/obj/item/weldingtool => 0ms (55) (avg:0) -/obj/machinery/door/airlock/security/glass => 0ms (51) (avg:0) -/turf/closed/mineral/diamond/volcanic => 0ms (44) (avg:0) -/obj/item/storage/toolbox/emergency => 0ms (42) (avg:0) -/turf/closed/wall/mineral/cult => 0ms (41) (avg:0) -/obj/item/reagent_containers/glass/beaker => 0ms (40) (avg:0) -/turf/closed/mineral/ash_rock => 0ms (40) (avg:0) -/obj/item/clipboard => 0ms (39) (avg:0) -/obj/machinery/door/airlock/engineering => 0ms (39) (avg:0) -/turf/closed/mineral/bscrystal/volcanic => 0ms (38) (avg:0) -/turf/open/floor/mineral/plastitanium/red => 0ms (37) (avg:0) -/turf/open/floor/plating/airless => 0ms (36) (avg:0) -/obj/machinery/power/solar/fake => 0ms (36) (avg:0) -/obj/machinery/atmospherics/pipe/manifold/general/visible => 0ms (36) (avg:0) -/obj/structure/window/plasma/reinforced/fulltile => 0ms (36) (avg:0) -/obj/machinery/door/airlock/hatch => 0ms (35) (avg:0) -/obj/machinery/door/airlock/titanium => 0ms (34) (avg:0) -/obj/machinery/computer/secure_data => 0ms (33) (avg:0) -/obj/machinery/door/airlock/command => 0ms (29) (avg:0) -/turf/closed/wall/mineral/titanium/overspace => 0ms (29) (avg:0) -/obj/machinery/power/smes => 0ms (28) (avg:0) -/obj/machinery/door/airlock/research => 0ms (28) (avg:0) -/obj/machinery/airalarm/all_access => 0ms (28) (avg:0) -/obj/item/gun/energy/laser => 0ms (27) (avg:0) -/turf/open/floor/circuit/green/off => 0ms (26) (avg:0) -/obj/machinery/door/airlock/medical => 0ms (26) (avg:0) -/obj/machinery/door/airlock/mining/glass => 0ms (26) (avg:0) -/obj/machinery/newscaster/security_unit => 0ms (26) (avg:0) -/obj/structure/lattice/clockwork => 0ms (25) (avg:0) -/mob/living/simple_animal/hostile/poison/bees => 0ms (24) (avg:0) -/obj/machinery/door/airlock/silver => 0ms (24) (avg:0) -/obj/machinery/door/airlock/engineering/glass => 0ms (24) (avg:0) -/turf/closed/wall/clockwork => 0ms (24) (avg:0) -/obj/effect/clockwork/overlay/wall => 0ms (24) (avg:0) -/obj/item/reagent_containers/glass/bottle/epinephrine => 0ms (23) (avg:0) -/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden => 0ms (23) (avg:0) -/obj/machinery/portable_atmospherics/canister/oxygen => 0ms (22) (avg:0) -/obj/structure/closet/secure_closet/personal => 0ms (21) (avg:0) -/obj/item/disk/plantgene => 0ms (21) (avg:0) -/obj/structure/table/wood/fancy => 0ms (21) (avg:0) -/obj/machinery/light/small/built => 0ms (21) (avg:0) -/obj/item/stock_parts/cell/high/plus => 0ms (20) (avg:0) -/obj/machinery/portable_atmospherics/canister/air => 0ms (19) (avg:0) -/obj/item/storage/belt/security/full => 0ms (19) (avg:0) -/obj/item/reagent_containers/glass/bottle/charcoal => 0ms (19) (avg:0) -/turf/closed/mineral/iron => 0ms (19) (avg:0) -/obj/machinery/computer/security => 0ms (18) (avg:0) -/obj/machinery/atmospherics/components/unary/vent_pump/on => 0ms (18) (avg:0) -/obj/structure/table/abductor => 0ms (18) (avg:0) -/turf/closed/wall/mineral/abductor => 0ms (18) (avg:0) -/obj/structure/closet/crate/bin => 0ms (17) (avg:0) -/obj/item/storage/toolbox/electrical => 0ms (17) (avg:0) -/obj/item/reagent_containers/blood/random => 0ms (16) (avg:0) -/obj/machinery/door/airlock/maintenance_hatch => 0ms (16) (avg:0) -/turf/open/floor/holofloor/carpet => 0ms (16) (avg:0) -/obj/machinery/computer/med_data => 0ms (15) (avg:0) -/turf/open/floor/plasteel/dark/corner => 0ms (15) (avg:0) -/obj/machinery/atmospherics/pipe/manifold/cyan/visible => 0ms (15) (avg:0) -/turf/closed/mineral/silver => 0ms (15) (avg:0) -/obj/structure/window/plastitanium => 0ms (15) (avg:0) -/mob/living/simple_animal/slime => 0ms (15) (avg:0) -/obj/structure/transit_tube/horizontal => 0ms (14) (avg:0) -/obj/item/storage/box/handcuffs => 0ms (14) (avg:0) -/obj/machinery/computer/crew => 0ms (13) (avg:0) -/obj/item/storage/box/lights/mixed => 0ms (13) (avg:0) -/obj/item/storage/box/syringes => 0ms (13) (avg:0) -/obj/structure/closet/firecloset => 0ms (13) (avg:0) -/obj/machinery/computer/operating => 0ms (12) (avg:0) -/obj/machinery/computer/shuttle/mining => 0ms (12) (avg:0) -/turf/open/floor/circuit/red => 0ms (12) (avg:0) -/turf/open/floor/circuit => 0ms (12) (avg:0) -/turf/open/floor/plasteel/showroomfloor => 0ms (12) (avg:0) -/turf/open/floor/plasteel/freezer => 0ms (12) (avg:0) -/obj/machinery/door/airlock/highsecurity => 0ms (12) (avg:0) -/obj/item/gun/energy/e_gun/turret => 0ms (12) (avg:0) -/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden => 0ms (12) (avg:0) -/obj/machinery/atmospherics/pipe/manifold4w/scrubbers => 0ms (12) (avg:0) -/turf/closed/mineral/titanium => 0ms (12) (avg:0) -/turf/closed/indestructible/riveted/boss/see_through => 0ms (12) (avg:0) -/mob/living/carbon/monkey => 0ms (11) (avg:0) -/obj/item/gun/ballistic/automatic/wt550 => 0ms (11) (avg:0) -/obj/machinery/computer/communications => 0ms (11) (avg:0) -/obj/item/gun/energy/e_gun => 0ms (11) (avg:0) -/obj/machinery/computer/station_alert => 0ms (11) (avg:0) -/obj/item/stack/ore/bluespace_crystal/artificial => 0ms (11) (avg:0) -/obj/item/reagent_containers/glass/bottle/morphine => 0ms (11) (avg:0) -/obj/structure/alien/resin/membrane => 0ms (11) (avg:0) -/obj/structure/closet/abductor => 0ms (10) (avg:0) -/obj/item/lighter => 0ms (10) (avg:0) -/obj/structure/closet/secure_closet/security => 0ms (10) (avg:0) -/obj/machinery/computer/cargo => 0ms (10) (avg:0) -/obj/item/clothing/under/polychromic/shirt => 0ms (10) (avg:0) -/obj/item/clothing/under/polychromic/skirt => 0ms (10) (avg:0) -/obj/item/storage/box => 0ms (10) (avg:0) -/obj/machinery/door/airlock/research/glass => 0ms (10) (avg:0) -/obj/item/storage/box/emptysandbags => 0ms (10) (avg:0) -/obj/machinery/door/airlock/atmos => 0ms (10) (avg:0) -/turf/open/floor/plasteel/airless => 0ms (10) (avg:0) -/obj/machinery/atmospherics/components/unary/vent_scrubber/on => 0ms (10) (avg:0) -/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible => 0ms (10) (avg:0) -/turf/closed/mineral/diamond => 0ms (10) (avg:0) -/obj/machinery/computer/mech_bay_power_console => 0ms (9) (avg:0) -/obj/machinery/computer/prisoner => 0ms (9) (avg:0) -/obj/machinery/computer/security/mining => 0ms (9) (avg:0) -/obj/item/storage/box/beakers => 0ms (9) (avg:0) -/obj/item/clothing/under/polychromic/jumpsuit => 0ms (9) (avg:0) -/obj/item/clothing/under/polychromic/kilt => 0ms (9) (avg:0) -/obj/item/clothing/under/polychromic/shorts => 0ms (9) (avg:0) -/turf/open/lava/smooth => 0ms (9) (avg:0) -/obj/structure/closet/crate/secure/loot => 0ms (8) (avg:0) -/obj/item/storage/box/flashbangs => 0ms (8) (avg:0) -/obj/machinery/computer/card/centcom => 0ms (8) (avg:0) -/obj/item/reagent_containers/syringe/epinephrine => 0ms (8) (avg:0) -/obj/machinery/computer/shuttle/labor => 0ms (8) (avg:0) -/obj/machinery/computer/atmos_alert => 0ms (8) (avg:0) -/obj/machinery/door/airlock/atmos/abandoned => 0ms (8) (avg:0) -/obj/item/storage/box/rxglasses => 0ms (8) (avg:0) -/obj/structure/closet/radiation => 0ms (8) (avg:0) -/obj/machinery/computer/teleporter => 0ms (8) (avg:0) -/obj/machinery/atmospherics/components/unary/cryo_cell => 0ms (8) (avg:0) -/obj/machinery/portable_atmospherics/canister/nitrous_oxide => 0ms (7) (avg:0) -/obj/machinery/portable_atmospherics/canister/toxins => 0ms (7) (avg:0) -/obj/item/gps/internal => 0ms (7) (avg:0) -/obj/machinery/computer/med_data/laptop => 0ms (7) (avg:0) -/obj/item/stock_parts/cell/upgraded/plus => 0ms (7) (avg:0) -/obj/structure/closet/secure_closet/brig => 0ms (7) (avg:0) -/obj/structure/closet/toolcloset => 0ms (7) (avg:0) -/obj/item/disk/data => 0ms (7) (avg:0) -/obj/item/stock_parts/cell/emproof => 0ms (7) (avg:0) -/obj/item/gun/energy/kinetic_accelerator => 0ms (7) (avg:0) -/obj/item/reagent_containers/glass/beaker/waterbottle/large => 0ms (7) (avg:0) -/obj/machinery/atmospherics/pipe/manifold/yellow/visible => 0ms (7) (avg:0) -/obj/item/reagent_containers/blood/OMinus => 0ms (6) (avg:0) -/obj/item/defibrillator/loaded => 0ms (6) (avg:0) -/obj/machinery/door/airlock/wood => 0ms (6) (avg:0) -/obj/item/dice/d20 => 0ms (6) (avg:0) -/obj/item/storage/box/ids => 0ms (6) (avg:0) -/obj/structure/closet/syndicate/personal => 0ms (6) (avg:0) -/obj/item/paicard => 0ms (6) (avg:0) -/obj/machinery/computer/cryopod => 0ms (6) (avg:0) -/obj/structure/closet/secure_closet/security/sec => 0ms (6) (avg:0) -/obj/item/storage/box/bodybags => 0ms (6) (avg:0) -/obj/item/storage/box/pillbottles => 0ms (6) (avg:0) -/obj/item/storage/box/medsprays => 0ms (6) (avg:0) -/obj/machinery/computer/monitor => 0ms (6) (avg:0) -/obj/machinery/computer/card => 0ms (6) (avg:0) -/obj/structure/closet/l3closet/scientist => 0ms (6) (avg:0) -/obj/item/reagent_containers/glass/beaker/cryoxadone => 0ms (6) (avg:0) -/obj/structure/closet/secure_closet/miner => 0ms (6) (avg:0) -/obj/machinery/door/airlock/virology => 0ms (6) (avg:0) -/obj/item/weldingtool/largetank => 0ms (6) (avg:0) -/obj/item/gun/energy/lasercannon => 0ms (6) (avg:0) -/obj/structure/lattice/catwalk/clockwork => 0ms (6) (avg:0) -/turf/closed/mineral/bananium => 0ms (6) (avg:0) -/obj/machinery/portable_atmospherics/canister/nitrogen => 0ms (5) (avg:0) -/obj/item/storage/box/alienhandcuffs => 0ms (5) (avg:0) -/obj/item/clothing/head/helmet/space/plasmaman => 0ms (5) (avg:0) -/obj/item/storage/box/matches => 0ms (5) (avg:0) -/obj/structure/closet/secure_closet/freezer/meat => 0ms (5) (avg:0) -/obj/machinery/computer/telecrystals/uplinker => 0ms (5) (avg:0) -/obj/item/dice/d4 => 0ms (5) (avg:0) -/obj/item/dice/d10 => 0ms (5) (avg:0) -/obj/item/gps/mining => 0ms (5) (avg:0) -/obj/item/reagent_containers/syringe/lethal/execution => 0ms (5) (avg:0) -/obj/item/pda => 0ms (5) (avg:0) -/obj/structure/closet/secure_closet/personal/patient => 0ms (5) (avg:0) -/obj/structure/closet/l3closet => 0ms (5) (avg:0) -/obj/item/reagent_containers/syringe/antiviral => 0ms (5) (avg:0) -/obj/structure/closet/emcloset/anchored => 0ms (5) (avg:0) -/obj/machinery/atmospherics/pipe/manifold/supply/visible => 0ms (5) (avg:0) -/obj/machinery/atmospherics/components/trinary/filter/flipped/critical => 0ms (5) (avg:0) -/obj/structure/table/wood/poker => 0ms (5) (avg:0) -/turf/closed/mineral/uranium => 0ms (5) (avg:0) -/turf/open/floor/mineral/plastitanium => 0ms (5) (avg:0) -/obj/screen/movable/action_button/hide_toggle => 0ms (4) (avg:0) -/obj/screen/parallax_layer/layer_2 => 0ms (4) (avg:0) -/obj/machinery/portable_atmospherics/canister/carbon_dioxide => 0ms (4) (avg:0) -/obj/structure/transit_tube/crossing/horizontal => 0ms (4) (avg:0) -/obj/machinery/computer/camera_advanced/abductor => 0ms (4) (avg:0) -/obj/item/storage/box/drinkingglasses => 0ms (4) (avg:0) -/obj/item/reagent_containers/blood/AMinus => 0ms (4) (avg:0) -/obj/item/reagent_containers/blood/BMinus => 0ms (4) (avg:0) -/obj/item/reagent_containers/blood/BPlus => 0ms (4) (avg:0) -/obj/item/reagent_containers/blood/OPlus => 0ms (4) (avg:0) -/obj/item/reagent_containers/blood/lizard => 0ms (4) (avg:0) -/obj/structure/closet/cardboard => 0ms (4) (avg:0) -/obj/item/storage/box/mousetraps => 0ms (4) (avg:0) -/obj/item/storage/box/silver_ids => 0ms (4) (avg:0) -/obj/item/storage/box/teargas => 0ms (4) (avg:0) -/obj/item/storage/box/zipties => 0ms (4) (avg:0) -/obj/item/dice/d6 => 0ms (4) (avg:0) -/obj/item/dice/d8 => 0ms (4) (avg:0) -/obj/item/dice/d12 => 0ms (4) (avg:0) -/obj/machinery/computer/emergency_shuttle => 0ms (4) (avg:0) -/obj/machinery/computer/shuttle/white_ship => 0ms (4) (avg:0) -/obj/machinery/door/airlock/vault => 0ms (4) (avg:0) -/obj/machinery/computer/auxillary_base => 0ms (4) (avg:0) -/obj/machinery/modular_computer/console/preset/command => 0ms (4) (avg:0) -/obj/structure/closet/wardrobe/white => 0ms (4) (avg:0) -/obj/structure/closet/secure_closet/medical1 => 0ms (4) (avg:0) -/obj/item/reagent_containers/glass/bottle/toxin => 0ms (4) (avg:0) -/obj/machinery/modular_computer/console/preset/engineering => 0ms (4) (avg:0) -/obj/machinery/computer/cargo/request => 0ms (4) (avg:0) -/obj/structure/closet/wardrobe/black => 0ms (4) (avg:0) -/obj/machinery/computer/scan_consolenew => 0ms (4) (avg:0) -/obj/machinery/door/airlock/mining => 0ms (4) (avg:0) -/turf/open/floor/plasteel/checker => 0ms (4) (avg:0) -/obj/machinery/computer/atmos_control => 0ms (4) (avg:0) -/obj/machinery/computer/camera_advanced/xenobio => 0ms (4) (avg:0) -/obj/machinery/door/airlock/atmos/glass => 0ms (4) (avg:0) -/obj/item/storage/toolbox/syndicate => 0ms (4) (avg:0) -/obj/item/gps => 0ms (4) (avg:0) -/obj/item/stock_parts/cell/hyper => 0ms (4) (avg:0) -/obj/machinery/atmospherics/pipe/manifold/green/visible => 0ms (4) (avg:0) -/obj/machinery/atmospherics/components/unary/outlet_injector/on => 0ms (4) (avg:0) -/obj/screen/movable/action_button => 0ms (4) (avg:0) -/turf/closed/wall/mineral/plastitanium/nodiagonal => 0ms (4) (avg:0) -/obj/structure/closet/secure_closet/freezer/fridge => 0ms (3) (avg:0) -/obj/structure/closet/secure_closet/freezer/kitchen => 0ms (3) (avg:0) -/obj/structure/closet/secure_closet/hydroponics => 0ms (3) (avg:0) -/obj/item/storage/box/disks_plantgene => 0ms (3) (avg:0) -/obj/machinery/gibber => 0ms (3) (avg:0) -/obj/item/storage/box/emps => 0ms (3) (avg:0) -/obj/item/gun/energy/ionrifle => 0ms (3) (avg:0) -/obj/machinery/modular_computer/console/preset/research => 0ms (3) (avg:0) -/obj/item/gps/internal/base => 0ms (3) (avg:0) -/obj/structure/closet/secure_closet/personal/cabinet => 0ms (3) (avg:0) -/obj/structure/closet/wardrobe/cargotech => 0ms (3) (avg:0) -/obj/machinery/computer/arcade/orion_trail/kobayashi => 0ms (3) (avg:0) -/obj/item/gun/energy/e_gun/advtaser => 0ms (3) (avg:0) -/obj/structure/closet/wardrobe/mixed => 0ms (3) (avg:0) -/obj/item/clothing/under/polychromic/shortpants => 0ms (3) (avg:0) -/obj/item/gun/energy/laser/bluetag => 0ms (3) (avg:0) -/obj/item/gun/energy/laser/redtag => 0ms (3) (avg:0) -/obj/structure/closet/secure_closet/chemical => 0ms (3) (avg:0) -/obj/structure/closet/wardrobe/pjs => 0ms (3) (avg:0) -/obj/structure/tank_dispenser/oxygen => 0ms (3) (avg:0) -/obj/structure/closet/wardrobe/grey => 0ms (3) (avg:0) -/obj/item/clothing/neck/petcollar => 0ms (3) (avg:0) -/obj/structure/closet/secure_closet/medical3 => 0ms (3) (avg:0) -/obj/structure/closet/bombcloset => 0ms (3) (avg:0) -/obj/structure/tank_dispenser => 0ms (3) (avg:0) -/obj/item/twohanded/rcl/pre_loaded => 0ms (3) (avg:0) -/obj/structure/closet/secure_closet/engineering_personal => 0ms (3) (avg:0) -/obj/item/gun/ballistic/automatic/pistol/m1911 => 0ms (3) (avg:0) -/obj/machinery/door/airlock/freezer => 0ms (3) (avg:0) -/obj/item/gps/internal/dragon => 0ms (3) (avg:0) -/obj/machinery/atmospherics/components/trinary/filter => 0ms (3) (avg:0) -/obj/structure/table/wood/bar => 0ms (3) (avg:0) -/obj/structure/window/reinforced/tinted/fulltile => 0ms (3) (avg:0) -/obj/item/reagent_containers/glass/beaker/waterbottle => 0ms (3) (avg:0) -/obj/structure/transit_tube => 0ms (2) (avg:0) -/obj/item/toy/crayon/spraycan => 0ms (2) (avg:0) -/obj/machinery/computer/shuttle => 0ms (2) (avg:0) -/obj/structure/closet/secure_closet/ertMed => 0ms (2) (avg:0) -/obj/item/defibrillator/compact/combat/loaded => 0ms (2) (avg:0) -/obj/item/stock_parts/cell/infinite => 0ms (2) (avg:0) -/obj/structure/closet/secure_closet/ertSec => 0ms (2) (avg:0) -/obj/item/storage/box/flashes => 0ms (2) (avg:0) -/obj/structure/closet/secure_closet/ertEngi => 0ms (2) (avg:0) -/obj/item/storage/box/metalfoam => 0ms (2) (avg:0) -/obj/machinery/computer/camera_advanced => 0ms (2) (avg:0) -/obj/machinery/computer/shuttle/ferry => 0ms (2) (avg:0) -/obj/machinery/computer/monitor/secret => 0ms (2) (avg:0) -/obj/structure/closet/secure_closet/quartermaster => 0ms (2) (avg:0) -/obj/structure/closet/secure_closet/courtroom => 0ms (2) (avg:0) -/obj/screen/parallax_layer/layer_3 => 0ms (2) (avg:0) -/obj/machinery/computer/security/hos => 0ms (2) (avg:0) -/obj/machinery/computer/card/minor/hos => 0ms (2) (avg:0) -/obj/item/storage/box/firingpins => 0ms (2) (avg:0) -/obj/item/gun/energy/e_gun/dragnet => 0ms (2) (avg:0) -/obj/machinery/computer/gulag_teleporter_computer => 0ms (2) (avg:0) -/obj/machinery/computer/security/labor => 0ms (2) (avg:0) -/obj/machinery/computer/camera_advanced/base_construction => 0ms (2) (avg:0) -/obj/machinery/computer/holodeck => 0ms (2) (avg:0) -/obj/machinery/computer/bank_machine => 0ms (2) (avg:0) -/turf/open/floor/wood => 0ms (2) (avg:0) -/obj/structure/closet/secure_closet/freezer/cream_pie => 0ms (2) (avg:0) -/obj/structure/closet/wardrobe/green => 0ms (2) (avg:0) -/obj/structure/fireaxecabinet => 0ms (2) (avg:0) -/obj/item/storage/box/evidence => 0ms (2) (avg:0) -/obj/machinery/computer/upload/ai => 0ms (2) (avg:0) -/obj/machinery/computer/upload/borg => 0ms (2) (avg:0) -/obj/machinery/computer/rdconsole/robotics => 0ms (2) (avg:0) -/obj/machinery/computer/rdconsole/core => 0ms (2) (avg:0) -/obj/item/storage/box/masks => 0ms (2) (avg:0) -/obj/item/storage/box/gloves => 0ms (2) (avg:0) -/obj/machinery/computer/aifixer => 0ms (2) (avg:0) -/obj/machinery/computer/rdconsole/experiment => 0ms (2) (avg:0) -/obj/machinery/computer/robotics => 0ms (2) (avg:0) -/obj/machinery/computer/cloning => 0ms (2) (avg:0) -/obj/machinery/computer/mecha => 0ms (2) (avg:0) -/obj/machinery/airalarm/server => 0ms (2) (avg:0) -/obj/machinery/computer/security/qm => 0ms (2) (avg:0) -/obj/machinery/computer/rdservercontrol => 0ms (2) (avg:0) -/obj/machinery/computer/card/minor/rd => 0ms (2) (avg:0) -/obj/machinery/airalarm/unlocked => 0ms (2) (avg:0) -/obj/item/reagent_containers/glass/beaker/synthflesh => 0ms (2) (avg:0) -/obj/structure/closet/secure_closet/medical2 => 0ms (2) (avg:0) -/obj/machinery/computer/card/minor/cmo => 0ms (2) (avg:0) -/obj/machinery/door/airlock/research/glass/incinerator/toxmix_exterior => 0ms (2) (avg:0) -/obj/machinery/door/airlock/research/glass/incinerator/toxmix_interior => 0ms (2) (avg:0) -/obj/machinery/computer/atmos_control/tank/mix_tank => 0ms (2) (avg:0) -/obj/machinery/computer/atmos_control/tank/nitrous_tank => 0ms (2) (avg:0) -/obj/item/reagent_containers/glass/bottle/mutagen => 0ms (2) (avg:0) -/obj/machinery/announcement_system => 0ms (2) (avg:0) -/obj/machinery/computer/message_monitor => 0ms (2) (avg:0) -/obj/structure/closet/secure_closet/atmospherics => 0ms (2) (avg:0) -/obj/machinery/computer/telecomms/server => 0ms (2) (avg:0) -/obj/machinery/computer/atmos_control/tank/toxin_tank => 0ms (2) (avg:0) -/obj/machinery/computer/atmos_control/tank/carbon_tank => 0ms (2) (avg:0) -/obj/machinery/computer/telecomms/monitor => 0ms (2) (avg:0) -/obj/machinery/computer/atmos_control/tank/nitrogen_tank => 0ms (2) (avg:0) -/obj/machinery/computer/atmos_control/tank/oxygen_tank => 0ms (2) (avg:0) -/obj/machinery/computer/atmos_control/tank/air_tank => 0ms (2) (avg:0) -/obj/machinery/computer/apc_control => 0ms (2) (avg:0) -/obj/structure/closet/firecloset/full => 0ms (2) (avg:0) -/obj/machinery/computer/card/minor/ce => 0ms (2) (avg:0) -/obj/machinery/computer/turbine_computer => 0ms (2) (avg:0) -/obj/machinery/door/airlock/public/glass/incinerator/atmos_interior => 0ms (2) (avg:0) -/obj/machinery/door/airlock/public/glass/incinerator/atmos_exterior => 0ms (2) (avg:0) -/obj/machinery/computer/rdconsole/production => 0ms (2) (avg:0) -/obj/machinery/door/airlock/abandoned => 0ms (2) (avg:0) -/obj/machinery/door/airlock/engineering/glass/critical => 0ms (2) (avg:0) -/obj/structure/reflector/box/anchored => 0ms (2) (avg:0) -/obj/structure/reflector/single/anchored => 0ms (2) (avg:0) -/obj/machinery/computer/shuttle/labor/one_way => 0ms (2) (avg:0) -/obj/machinery/door/airlock/glass => 0ms (2) (avg:0) -/obj/structure/closet/secure_closet/freezer => 0ms (2) (avg:0) -/obj/structure/closet/malf/suits => 0ms (2) (avg:0) -/obj/item/gun/ballistic/automatic/pistol => 0ms (2) (avg:0) -/obj/item/gps/internal/colossus => 0ms (2) (avg:0) -/obj/machinery/atmospherics/pipe/manifold => 0ms (2) (avg:0) -/obj/machinery/atmospherics/pipe/manifold4w/general => 0ms (2) (avg:0) -/obj/machinery/atmospherics/pipe/manifold4w => 0ms (2) (avg:0) -/obj/structure/falsewall => 0ms (2) (avg:0) -/obj/structure/alien/weeds/node => 0ms (2) (avg:0) -/turf/closed/mineral/bscrystal => 0ms (2) (avg:0) -/obj/machinery/computer/camera_advanced/shuttle_docker/whiteship => 0ms (2) (avg:0) -/obj/item/pda/heads/cmo => 0ms (2) (avg:0) -/obj/item/storage/box/stockparts/deluxe => 0ms (2) (avg:0) -/mob/dead/observer => 0ms (2) (avg:0) -/obj/structure/closet/crate/secure/gear => 0ms (1) (avg:0) -/obj/machinery/portable_atmospherics/canister/water_vapor => 0ms (1) (avg:0) -/obj/machinery/portable_atmospherics/canister/bz => 0ms (1) (avg:0) -/obj/structure/transit_tube/station/reverse/flipped => 0ms (1) (avg:0) -/obj/structure/transit_tube/curved/flipped => 0ms (1) (avg:0) -/obj/structure/transit_tube/curved => 0ms (1) (avg:0) -/obj/structure/transit_tube/station/reverse => 0ms (1) (avg:0) -/obj/structure/door_assembly/door_assembly_hatch => 0ms (1) (avg:0) -/obj/structure/door_assembly/door_assembly_mhatch => 0ms (1) (avg:0) -/obj/structure/closet/crate/critter => 0ms (1) (avg:0) -/mob/living/carbon/monkey/punpun => 0ms (1) (avg:0) -/obj/item/gps/internal/legion => 0ms (1) (avg:0) -/obj/item/gps/internal/hierophant => 0ms (1) (avg:0) -/obj/item/gps/internal/miner => 0ms (1) (avg:0) -/obj/item/gps/internal/swarmer_beacon => 0ms (1) (avg:0) -/obj/structure/closet/chefcloset => 0ms (1) (avg:0) -/obj/item/dice => 0ms (1) (avg:0) -/obj/structure/closet/cardboard/metal => 0ms (1) (avg:0) -/obj/machinery/computer/telecrystals/boss => 0ms (1) (avg:0) -/obj/machinery/shuttle_manipulator => 0ms (1) (avg:0) -/obj/structure/closet/secure_closet/ertCom => 0ms (1) (avg:0) -/obj/machinery/computer/shuttle/syndicate/recall => 0ms (1) (avg:0) -/obj/item/dice/d6/space => 0ms (1) (avg:0) -/obj/item/stock_parts/cell/pulse/carbine => 0ms (1) (avg:0) -/obj/item/gun/energy/pulse/carbine/loyalpin => 0ms (1) (avg:0) -/obj/item/gun/ballistic/automatic/ar => 0ms (1) (avg:0) -/obj/structure/closet/secure_closet/contraband/heads => 0ms (1) (avg:0) -/obj/structure/closet/lawcloset => 0ms (1) (avg:0) -/obj/item/gun/energy/e_gun/mini/practice_phaser => 0ms (1) (avg:0) -/obj/item/storage/box/seccarts => 0ms (1) (avg:0) -/obj/item/storage/box/deputy => 0ms (1) (avg:0) -/obj/structure/closet/bombcloset/security => 0ms (1) (avg:0) -/obj/item/storage/box/trackimp => 0ms (1) (avg:0) -/obj/item/gun/energy/temperature/security => 0ms (1) (avg:0) -/obj/structure/closet/secure_closet/lethalshots => 0ms (1) (avg:0) -/obj/structure/closet/l3closet/security => 0ms (1) (avg:0) -/obj/structure/closet/secure_closet/hos => 0ms (1) (avg:0) -/obj/item/gun/energy/e_gun/hos => 0ms (1) (avg:0) -/obj/structure/closet/secure_closet/contraband/armory => 0ms (1) (avg:0) -/obj/item/storage/toolbox/drone => 0ms (1) (avg:0) -/obj/item/storage/box/hug => 0ms (1) (avg:0) -/obj/structure/closet/secure_closet/injection => 0ms (1) (avg:0) -/obj/structure/closet/secure_closet/warden => 0ms (1) (avg:0) -/obj/item/storage/box/prisoner => 0ms (1) (avg:0) -/obj/item/storage/box/hug/medical => 0ms (1) (avg:0) -/obj/item/construction/rcd/internal => 0ms (1) (avg:0) -/obj/item/stock_parts/cell/potato => 0ms (1) (avg:0) -/obj/item/storage/box/cups => 0ms (1) (avg:0) -/obj/structure/closet/athletic_mixed => 0ms (1) (avg:0) -/obj/structure/closet/boxinggloves => 0ms (1) (avg:0) -/obj/structure/closet/masks => 0ms (1) (avg:0) -/obj/structure/closet/lasertag/blue => 0ms (1) (avg:0) -/obj/structure/closet/lasertag/red => 0ms (1) (avg:0) -/obj/item/dice/d1 => 0ms (1) (avg:0) -/obj/item/construction/rcd => 0ms (1) (avg:0) -/obj/item/folder/documents => 0ms (1) (avg:0) -/obj/structure/closet/secure_closet/bar => 0ms (1) (avg:0) -/obj/item/reagent_containers/glass/bottle/nutrient/ez => 0ms (1) (avg:0) -/obj/item/reagent_containers/glass/bottle/nutrient/rh => 0ms (1) (avg:0) -/obj/structure/closet/secure_closet/exile => 0ms (1) (avg:0) -/obj/item/lighter/greyscale => 0ms (1) (avg:0) -/obj/item/storage/box/PDAs => 0ms (1) (avg:0) -/obj/structure/closet/secure_closet/detective => 0ms (1) (avg:0) -/obj/item/gun/energy/laser/captain => 0ms (1) (avg:0) -/obj/machinery/gravity_generator/part => 0ms (1) (avg:0) -/obj/structure/closet/secure_closet/security/med => 0ms (1) (avg:0) -/obj/item/reagent_containers/glass/beaker/sulphuric => 0ms (1) (avg:0) -/obj/structure/closet/secure_closet/captains => 0ms (1) (avg:0) -/obj/item/storage/belt/sabre => 0ms (1) (avg:0) -/obj/structure/closet/wardrobe/chemistry_white => 0ms (1) (avg:0) -/obj/item/storage/box/disks => 0ms (1) (avg:0) -/obj/structure/closet/secure_closet/hop => 0ms (1) (avg:0) -/obj/structure/closet/secure_closet/security/science => 0ms (1) (avg:0) -/obj/structure/closet/secure_closet/security/cargo => 0ms (1) (avg:0) -/obj/structure/closet/secure_closet/RD => 0ms (1) (avg:0) -/obj/structure/closet/l3closet/janitor => 0ms (1) (avg:0) -/obj/structure/closet/wardrobe/miner => 0ms (1) (avg:0) -/obj/item/reagent_containers/blood/APlus => 0ms (1) (avg:0) -/obj/structure/closet/secure_closet/CMO => 0ms (1) (avg:0) -/obj/item/defibrillator/compact/loaded => 0ms (1) (avg:0) -/obj/item/organ/cyberimp/eyes/hud/medical => 0ms (1) (avg:0) -/obj/item/reagent_containers/glass/bottle/vial/large/preloaded/CMO => 0ms (1) (avg:0) -/obj/item/reagent_containers/glass/bottle/vial/large/preloaded/tricord => 0ms (1) (avg:0) -/obj/item/reagent_containers/glass/bottle/vial/large/preloaded/charcoal => 0ms (1) (avg:0) -/obj/item/reagent_containers/glass/bottle/vial/large/preloaded/salglu => 0ms (1) (avg:0) -/obj/item/reagent_containers/glass/bottle/vial/large/preloaded/dexalin => 0ms (1) (avg:0) -/obj/item/reagent_containers/glass/bottle/vial/large/preloaded/synthflesh => 0ms (1) (avg:0) -/obj/item/stack/ore/silver => 0ms (1) (avg:0) -/obj/item/reagent_containers/glass/bottle/cold => 0ms (1) (avg:0) -/obj/item/reagent_containers/glass/bottle/flu_virion => 0ms (1) (avg:0) -/obj/item/reagent_containers/glass/bottle/plasma => 0ms (1) (avg:0) -/obj/item/reagent_containers/glass/bottle/synaptizine => 0ms (1) (avg:0) -/obj/item/reagent_containers/glass/bottle/formaldehyde => 0ms (1) (avg:0) -/obj/structure/closet/secure_closet/security/engine => 0ms (1) (avg:0) -/obj/structure/closet/l3closet/virology => 0ms (1) (avg:0) -/turf/open/floor/plasteel/dark/telecomms => 0ms (1) (avg:0) -/obj/structure/closet/secure_closet/freezer/kitchen/maintenance => 0ms (1) (avg:0) -/obj/item/storage/toolbox/artistic => 0ms (1) (avg:0) -/obj/item/clothing/under/maid => 0ms (1) (avg:0) -/obj/structure/closet/secure_closet/engineering_chief => 0ms (1) (avg:0) -/obj/structure/closet/secure_closet/engineering_electrical => 0ms (1) (avg:0) -/obj/structure/closet/secure_closet/engineering_welding => 0ms (1) (avg:0) -/obj/machinery/airalarm/engine => 0ms (1) (avg:0) -/obj/structure/closet/wardrobe/engineering_yellow => 0ms (1) (avg:0) -/obj/structure/reflector/double/anchored => 0ms (1) (avg:0) -/obj/structure/necropolis_gate/locked => 0ms (1) (avg:0) -/obj/structure/necropolis_gate/legion_gate => 0ms (1) (avg:0) -/obj/structure/necropolis_arch => 0ms (1) (avg:0) -/obj/item/construction/rcd/loaded => 0ms (1) (avg:0) -/obj/structure/necropolis_gate => 0ms (1) (avg:0) -/obj/machinery/door/airlock/diamond => 0ms (1) (avg:0) -/obj/item/folder/syndicate/mining => 0ms (1) (avg:0) -/obj/item/pda/clown => 0ms (1) (avg:0) -/obj/item/storage/box/hug/survival => 0ms (1) (avg:0) -/obj/item/storage/box/lights => 0ms (1) (avg:0) -/obj/item/storage/belt/utility/full => 0ms (1) (avg:0) -/obj/item/reagent_containers/syringe/lethal/choral => 0ms (1) (avg:0) -/obj/item/gun/energy/floragun => 0ms (1) (avg:0) -/obj/structure/closet/wardrobe/science_white => 0ms (1) (avg:0) -/obj/item/reagent_containers/glass/bottle/random_virus => 0ms (1) (avg:0) -/obj/item/gun/energy/temperature => 0ms (1) (avg:0) -/obj/machinery/computer/rdconsole => 0ms (1) (avg:0) -/obj/item/pda/clear => 0ms (1) (avg:0) -/obj/machinery/computer => 0ms (1) (avg:0) -/area/space => 0ms (1) (avg:0) -/area/awaymission/errorroom => 0ms (1) (avg:0) -/area/abductor_ship => 0ms (1) (avg:0) -/area/fabric_of_reality => 0ms (1) (avg:0) -/area/ai_multicam_room => 0ms (1) (avg:0) -/area/tdome/arena => 0ms (1) (avg:0) -/area/centcom/supplypod => 0ms (1) (avg:0) -/area/centcom/supplypod/podStorage => 0ms (1) (avg:0) -/area/centcom/supplypod/loading/three => 0ms (1) (avg:0) -/area/centcom/supplypod/loading/four => 0ms (1) (avg:0) -/area/centcom/supplypod/loading/one => 0ms (1) (avg:0) -/area/centcom/supplypod/loading/two => 0ms (1) (avg:0) -/area/syndicate_mothership => 0ms (1) (avg:0) -/area/ctf => 0ms (1) (avg:0) -/area/start => 0ms (1) (avg:0) -/area/tdome/arena_source => 0ms (1) (avg:0) -/area/holodeck/rec_center/refuel => 0ms (1) (avg:0) -/area/holodeck/rec_center/spacechess => 0ms (1) (avg:0) -/area/holodeck/rec_center/thunderdome1218 => 0ms (1) (avg:0) -/area/holodeck/rec_center/kobayashi => 0ms (1) (avg:0) -/area/holodeck/rec_center/chapelcourt => 0ms (1) (avg:0) -/area/holodeck/rec_center/school => 0ms (1) (avg:0) -/area/holodeck/rec_center/firingrange => 0ms (1) (avg:0) -/area/holodeck/rec_center/anthophila => 0ms (1) (avg:0) -/area/holodeck/rec_center/pet_lounge => 0ms (1) (avg:0) -/area/holodeck/rec_center/medical => 0ms (1) (avg:0) -/area/holodeck/rec_center/basketball => 0ms (1) (avg:0) -/area/holodeck/rec_center/beach => 0ms (1) (avg:0) -/area/holodeck/rec_center/thunderdome => 0ms (1) (avg:0) -/area/holodeck/rec_center/dodgeball => 0ms (1) (avg:0) -/area/holodeck/rec_center/winterwonderland => 0ms (1) (avg:0) -/area/holodeck/rec_center/bunker => 0ms (1) (avg:0) -/area/holodeck/rec_center/lounge => 0ms (1) (avg:0) -/area/holodeck/rec_center/wildlife => 0ms (1) (avg:0) -/area/holodeck/rec_center/offline => 0ms (1) (avg:0) -/area/holodeck/rec_center/burn => 0ms (1) (avg:0) -/area/holodeck/rec_center/court => 0ms (1) (avg:0) -/area/space/nearstation => 0ms (1) (avg:0) -/area/solar/port/fore => 0ms (1) (avg:0) -/area/solar/starboard/fore => 0ms (1) (avg:0) -/area/holodeck/rec_center => 0ms (1) (avg:0) -/area/solar/port/aft => 0ms (1) (avg:0) -/area/solar/starboard/aft => 0ms (1) (avg:0) -/obj/item/gps/internal/bubblegum => 0ms (1) (avg:0) -/obj/item/paper/monitorkey => 0ms (1) (avg:0) -/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden => 0ms (1) (avg:0) -/obj/machinery/atmospherics/components/trinary/mixer => 0ms (1) (avg:0) -/obj/machinery/atmospherics/components/trinary/mixer/flipped => 0ms (1) (avg:0) -/obj/machinery/atmospherics/components/trinary/filter/atmos/n2o => 0ms (1) (avg:0) -/obj/machinery/atmospherics/components/trinary/filter/atmos/plasma => 0ms (1) (avg:0) -/obj/machinery/atmospherics/components/trinary/mixer/airmix => 0ms (1) (avg:0) -/obj/machinery/atmospherics/components/trinary/filter/atmos/co2 => 0ms (1) (avg:0) -/obj/machinery/atmospherics/pipe/manifold/cyan/hidden => 0ms (1) (avg:0) -/obj/machinery/atmospherics/components/trinary/filter/atmos/n2 => 0ms (1) (avg:0) -/obj/machinery/atmospherics/components/trinary/filter/atmos/o2 => 0ms (1) (avg:0) -/obj/machinery/atmospherics/pipe/manifold/general/hidden => 0ms (1) (avg:0) -/obj/machinery/atmospherics/pipe/manifold/orange/visible => 0ms (1) (avg:0) -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/engine_waste => 0ms (1) (avg:0) -/obj/machinery/computer/shuttle/syndicate/drop_pod => 0ms (1) (avg:0) -/obj/structure/closet/syndicate/nuclear => 0ms (1) (avg:0) -/obj/item/pda/syndicate => 0ms (1) (avg:0) -/obj/machinery/computer/med_data/syndie => 0ms (1) (avg:0) -/obj/machinery/computer/crew/syndie => 0ms (1) (avg:0) -/obj/machinery/computer/camera_advanced/shuttle_docker/syndicate => 0ms (1) (avg:0) -/obj/machinery/computer/shuttle/syndicate => 0ms (1) (avg:0) -/obj/machinery/computer/camera_advanced/syndie => 0ms (1) (avg:0) -/obj/machinery/computer/secure_data/syndie => 0ms (1) (avg:0) -/obj/machinery/computer/shuttle/ferry/request => 0ms (1) (avg:0) -/obj/structure/closet/secure_closet/miner/unlocked => 0ms (1) (avg:0) -/obj/item/storage/box/lights/bulbs => 0ms (1) (avg:0) -/obj/item/pda/medical => 0ms (1) (avg:0) -/obj/structure/closet/wardrobe/white/medical => 0ms (1) (avg:0) -/obj/machinery/atmospherics/pipe/manifold4w/general/visible => 0ms (1) (avg:0) -/turf/open/floor/plasteel/white/side => 0ms (1) (avg:0) -/obj/item/storage/box/survival => 0ms (1) (avg:0) -/obj/screen/inventory/hand => 0ms (1) (avg:0) -/obj/screen/zone_sel => 0ms (1) (avg:0) -/area/shuttle/transit => 0ms (1) (avg:0) diff --git a/data/logs/2019/12/03/round-23.40.49/singulo.html b/data/logs/2019/12/03/round-23.40.49/singulo.html deleted file mode 100644 index 82e81cde..00000000 --- a/data/logs/2019/12/03/round-23.40.49/singulo.html +++ /dev/null @@ -1,9 +0,0 @@ -23:41:53 [0x200b8e6] (114,52,3) || the power storage unit lost power and turned off
-23:41:53 [0x200b8cb] (112,52,3) || the power storage unit lost power and turned off
-23:41:53 [0x20093fd] (196,79,2) || the power storage unit lost power and turned off
-23:41:53 [0x20090a2] (77,82,2) || the power storage unit lost power and turned off
-23:41:53 [0x2005b2b] (186,151,2) || the power storage unit lost power and turned off
-23:41:53 [0x2005b21] (180,151,2) || the power storage unit lost power and turned off
-23:41:53 [0x200545f] (162,161,2) || the power storage unit lost power and turned off
-23:41:53 [0x20052ec] (65,164,2) || the power storage unit lost power and turned off
-23:42:01 [0x2009056] (151,83,2) || the power storage unit lost power and turned off
diff --git a/data/logs/2019/12/03/round-23.56.34/attack.log b/data/logs/2019/12/03/round-23.56.34/attack.log deleted file mode 100644 index 72f6a12e..00000000 --- a/data/logs/2019/12/03/round-23.56.34/attack.log +++ /dev/null @@ -1,15 +0,0 @@ -[2019-12-04 04:56:34.962] Starting up round ID . - - ------------------------- -[2019-12-04 04:57:51.004] ATTACK: BigFatAnimeTiddies/(Alessandra Joghs) has thrown the first-aid kit (Chief Medical Officer's Office (159, 110, 2)) -[2019-12-04 04:58:06.492] ATTACK: BigFatAnimeTiddies/(Alessandra Joghs) has thrown the bluespace rapid part exchange device (Genetics Lab (153, 115, 2)) -[2019-12-04 04:59:37.805] ATTACK: BigFatAnimeTiddies/(Alessandra Joghs) has grabbed *no key*/(Alessandra Joghs) passive grab (NEWHP: 100) (Genetics Lab (155, 114, 2)) -[2019-12-04 05:00:42.882] ATTACK: BigFatAnimeTiddies/(Alessandra Joghs) has fired at BigFatAnimeTiddies/(Alessandra Joghs) with [particle beam] from Genetics Lab (NEWHP: 100) (Genetics Lab (153, 115, 2)) -[2019-12-04 05:00:42.889] ATTACK: BigFatAnimeTiddies/(Alessandra Joghs) has shot *no key*/(Alessandra Joghs) with [particle beam] (NEWHP: 45) (Genetics Lab (153, 115, 2)) -[2019-12-04 05:00:51.246] ATTACK: BigFatAnimeTiddies/(Alessandra Joghs) has fired at BigFatAnimeTiddies/(Alessandra Joghs) with [particle beam] from Medbay Central (NEWHP: 100) (Medbay Central (153, 118, 2)) -[2019-12-04 05:00:55.406] ATTACK: BigFatAnimeTiddies/(Alessandra Joghs) has fired at [floor] with [particle beam] from Medbay Central (Medbay Central (153, 118, 2)) -[2019-12-04 05:01:01.193] ATTACK: BigFatAnimeTiddies/(Alessandra Joghs) has fired at [crafting menu] with [particle beam] from Medbay Central (Medbay Central (152, 120, 2)) -[2019-12-04 05:01:02.520] ATTACK: BigFatAnimeTiddies/(Alessandra Joghs) has fired at [*invalid*] with [particle beam] from Medbay Central (Medbay Central (152, 120, 2)) -[2019-12-04 05:01:08.326] ATTACK: BigFatAnimeTiddies/(Alessandra Joghs) has fired at [*invalid*] with [particle beam] from Medbay Central (Medbay Central (152, 120, 2)) -[2019-12-04 05:01:12.479] ATTACK: BigFatAnimeTiddies/(Alessandra Joghs) has fired at [*invalid*] with [particle beam] from Medbay Central (Medbay Central (152, 120, 2)) -[2019-12-04 05:01:13.538] ATTACK: BigFatAnimeTiddies/(Alessandra Joghs) has fired at [*invalid*] with [particle beam] from Medbay Central (Medbay Central (152, 120, 2)) -[2019-12-04 05:01:13.700] ATTACK: BigFatAnimeTiddies/(Alessandra Joghs) has fired at [*invalid*] with [particle beam] from Medbay Central (Medbay Central (152, 120, 2)) diff --git a/data/logs/2019/12/03/round-23.56.34/cargo.html b/data/logs/2019/12/03/round-23.56.34/cargo.html deleted file mode 100644 index a126e661..00000000 --- a/data/logs/2019/12/03/round-23.56.34/cargo.html +++ /dev/null @@ -1 +0,0 @@ -23:57:23 [0x2027cdd] (152,108,1) || the supply shuttle Shuttle contents sold for 0 credits. Contents: /list Message: none.
diff --git a/data/logs/2019/12/03/round-23.56.34/cloning.log b/data/logs/2019/12/03/round-23.56.34/cloning.log deleted file mode 100644 index f78e8e21..00000000 --- a/data/logs/2019/12/03/round-23.56.34/cloning.log +++ /dev/null @@ -1,6 +0,0 @@ -[2019-12-04 04:58:12.328] CLONING: Autoprocess added the record of BigFatAnimeTiddies/(Alessandra Joghs) to the cloning console at Genetics Lab (154, 113, 2). -[2019-12-04 04:58:16.692] CLONING: BigFatAnimeTiddies/(Alessandra Joghs) initiated EMPTY cloning of [0x210012b0][DC] via the cloning console at Genetics Lab (154, 113, 2). Pod: the cloning pod at Genetics Lab (155, 113, 2). -[2019-12-04 04:59:34.342] CLONING: *no key*/(Alessandra Joghs) completed cloning cycle in the cloning pod at Genetics Lab (155, 113, 2). -[2019-12-04 04:59:46.326] CLONING: Autoprocess added the record of BigFatAnimeTiddies/(Alessandra Joghs) to the cloning console at Genetics Lab (154, 113, 2). -[2019-12-04 05:00:02.463] CLONING: BigFatAnimeTiddies/(Alessandra Joghs) deleted [0x210012b0][DC]'s cloning records from the cloning console at Genetics Lab (154, 113, 2). -[2019-12-04 05:00:08.326] CLONING: Autoprocess added the record of BigFatAnimeTiddies/(Alessandra Joghs) to the cloning console at Genetics Lab (154, 113, 2). diff --git a/data/logs/2019/12/03/round-23.56.34/config_error.log b/data/logs/2019/12/03/round-23.56.34/config_error.log deleted file mode 100644 index 8424e97c..00000000 --- a/data/logs/2019/12/03/round-23.56.34/config_error.log +++ /dev/null @@ -1,12 +0,0 @@ -[2019-12-04 04:56:34.924] Running /tg/ revision: 2019-12-04 - - origin/master: 95e35dc714ec059af1ba4f6355f717d810b87fa6 - - HEAD: 2cbcd7d49519db45ac762495b8c325f79919db0e -[2019-12-04 04:56:34.932] Loading config file config.txt... -[2019-12-04 04:56:34.935] Loading config file game_options.txt... -[2019-12-04 04:56:34.939] Failed to validate setting "WEREWOLF 1" for probability -[2019-12-04 04:56:34.943] Loading config file dbconfig.txt... -[2019-12-04 04:56:34.945] Loading config file comms.txt... -[2019-12-04 04:56:34.947] Loading config file antag_rep.txt... -[2019-12-04 04:56:34.950] Loading config file donator_groupings.txt... -[2019-12-04 04:56:34.954] Loading config file maps.txt... -[2019-12-04 04:56:34.961] SQL: Database is not enabled in configuration. diff --git a/data/logs/2019/12/03/round-23.56.34/game.log b/data/logs/2019/12/03/round-23.56.34/game.log deleted file mode 100644 index 53c6629f..00000000 --- a/data/logs/2019/12/03/round-23.56.34/game.log +++ /dev/null @@ -1,333 +0,0 @@ -[2019-12-04 04:56:34.962] Starting up round ID . - - ------------------------- -[2019-12-04 04:56:35.001] ADMIN: Loading Banlist -[2019-12-04 04:56:35.257] ACCESS: Login: BigFatAnimeTiddies from 127.0.0.1-3498261404 || BYOND v512.1463 -[2019-12-04 04:56:35.258] ACCESS: Mob Login: BigFatAnimeTiddies/(BigFatAnimeTiddies) was assigned to a /mob/dead/new_player -[2019-12-04 04:56:35.966] GAME: BigFatAnimeTiddies/(BigFatAnimeTiddies) Client BigFatAnimeTiddies/(BigFatAnimeTiddies) has taken ownership of mob BigFatAnimeTiddies(/mob/dead/new_player) (start area (11, 174, 1)) -[2019-12-04 04:56:36.145] GAME: Saved mode is 'extended' -[2019-12-04 04:56:43.246] GAME: Hierophant's Arena loaded at at 148,196,4 -[2019-12-04 04:56:43.263] GAME: Makeshift Shelter loaded at at 57,180,4 -[2019-12-04 04:56:43.291] GAME: Free Golem Ship loaded at at 118,94,4 -[2019-12-04 04:56:43.324] GAME: Ruin of Sloth loaded at at 158,38,4 -[2019-12-04 04:56:43.334] GAME: Fountain Hall loaded at at 199,177,4 -[2019-12-04 04:56:43.385] GAME: Ash Walker Nest loaded at at 170,91,4 -[2019-12-04 04:56:43.438] GAME: Animal Hospital loaded at at 212,81,4 -[2019-12-04 04:56:43.867] GAME: Ancient Space Station loaded at at 76,109,3 -[2019-12-04 04:56:43.909] GAME: Derelict 4 loaded at at 121,27,3 -[2019-12-04 04:56:44.232] GAME: The Twin-Nexus Hotel loaded at at 167,110,3 -[2019-12-04 04:56:44.274] GAME: Disposal Facility 17 loaded at at 31,137,3 -[2019-12-04 04:56:44.492] GAME: Survivalist Bunker loaded at at 104,164,3 -[2019-12-04 04:56:44.524] GAME: Strange Ship loaded at at 75,204,3 -[2019-12-04 04:56:44.583] GAME: DK Excavator 453 loaded at at 41,54,3 -[2019-12-04 04:56:44.622] GAME: Derelict 6 loaded at at 43,159,3 -[2019-12-04 04:56:44.647] GAME: Empty Shell loaded at at 207,41,3 -[2019-12-04 04:56:44.682] GAME: DJ Station loaded at at 215,194,3 -[2019-12-04 04:56:48.570] GAME: Ancient Cloning Lab loaded at at 176,31,3 -[2019-12-04 04:56:48.607] GAME: Aesthetic Outpost loaded at at 185,45,3 -[2019-12-04 04:56:48.633] GAME: Abandoned Teleporter loaded at at 184,205,3 -[2019-12-04 04:56:48.658] GAME: Asteroid 2 loaded at at 82,23,3 -[2019-12-04 04:56:48.683] GAME: Salvation loaded at at 35,111,3 -[2019-12-04 04:56:48.720] GAME: Space Arcade loaded at at 74,63,3 -[2019-12-04 04:56:57.312] ADMIN: BigFatAnimeTiddies has started the game. -[2019-12-04 04:57:22.579] GAME: Backup Shuttle loaded at at 84,206,1 -[2019-12-04 04:57:22.652] GAME: assault pod (Default) loaded at at 85,207,1 -[2019-12-04 04:57:22.919] GAME: basic syndicate infiltrator loaded at at 80,199,1 -[2019-12-04 04:57:23.200] GAME: fancy transport ferry loaded at at 82,208,1 -[2019-12-04 04:57:23.362] GAME: Box Station Emergency Shuttle loaded at at 83,199,1 -[2019-12-04 04:57:23.532] GAME: cargo ferry (Box) loaded at at 85,204,1 -[2019-12-04 04:57:23.729] GAME: escape pod (Default) loaded at at 87,208,1 -[2019-12-04 04:57:23.767] GAME: labour shuttle (Box) loaded at at 86,206,1 -[2019-12-04 04:57:23.838] GAME: auxilliary base (Default) loaded at at 84,206,1 -[2019-12-04 04:57:23.887] GAME: escape pod (Default) loaded at at 87,208,1 -[2019-12-04 04:57:23.977] GAME: arrival shuttle (Box) loaded at at 81,207,1 -[2019-12-04 04:57:24.060] GAME: escape pod (Default) loaded at at 87,208,1 -[2019-12-04 04:57:24.093] GAME: mining shuttle (Box) loaded at at 86,207,1 -[2019-12-04 04:57:24.135] GAME: escape pod (Default) loaded at at 87,208,1 -[2019-12-04 04:57:24.343] VOTE: Roundtype vote started by server. -[2019-12-04 04:57:26.622] GAME: *no key*/(BigFatAnimeTiddies) *no key*/(BigFatAnimeTiddies) is no longer owning mob BigFatAnimeTiddies(/mob/dead/new_player) (start area (11, 174, 1)) -[2019-12-04 04:57:26.622] ACCESS: Mob Login: BigFatAnimeTiddies/(Alessandra Joghs) was assigned to a /mob/living/carbon/human -[2019-12-04 04:57:26.747] GAME: BigFatAnimeTiddies/(Alessandra Joghs) Client BigFatAnimeTiddies/(Alessandra Joghs) has taken ownership of mob (/mob/living/carbon/human) (Chief Medical Officer's Office (158, 110, 2)) -[2019-12-04 04:57:32.507] SAY: *no key*/(Prison Ofitser) "Engaging patrol mode." (Labor Camp Security (23, 36, 4)) -[2019-12-04 04:57:32.508] SAY: *no key*/(Prison Ofitser) "Disengaging patrol mode." (Labor Camp Security (23, 36, 4)) -[2019-12-04 04:57:32.513] SAY: *no key*/(Officer Beepsky) "Engaging patrol mode." (Labor Shuttle Dock (94, 159, 2)) -[2019-12-04 04:57:34.447] EMOTE: *no key*/(Runtime) looks alert. (Chief Medical Officer's Office (159, 109, 2)) -[2019-12-04 04:57:34.642] EMOTE: *no key*/(mouse) runs in a circle. (Port Maintenance (61, 127, 2)) -[2019-12-04 04:57:34.647] SAY: *no key*/(Poly) "I have lived many lives!" FORCED by poly (Chief Engineer's Office (118, 83, 2)) -[2019-12-04 04:57:38.492] EMOTE: *no key*/(Runtime) sits down. (Chief Medical Officer's Office (159, 109, 2)) -[2019-12-04 04:57:44.833] SAY: *no key*/(Poly) "Poly wanna cracker!" FORCED by poly (Chief Engineer's Office (116, 83, 2)) -[2019-12-04 04:57:45.364] ADMIN: BigFatAnimeTiddies/(Alessandra Joghs) created a /obj/item/storage/box/stockparts/deluxe -[2019-12-04 04:57:47.029] ADMIN: BigFatAnimeTiddies/(Alessandra Joghs) created a /obj/item/storage/part_replacer/bluespace -[2019-12-04 04:57:48.928] SAY: *no key*/(�Medibot) "There's always a catch, and I'm the best there is." (CentCom Transport Shuttle Dock (154, 73, 1)) -[2019-12-04 04:57:54.927] SAY: *no key*/(Poly) "Check the crystal, you chucklefucks!" FORCED by poly (Chief Engineer's Office (117, 82, 2)) -[2019-12-04 04:57:56.925] SAY: *no key*/(�Medibot) "I knew it, I should've been a plastic surgeon." (CentCom Transport Shuttle Dock (154, 73, 1)) -[2019-12-04 04:57:56.929] EMOTE: *no key*/(Poly) turns and flies towards the high-capacity power cell+. (Chief Engineer's Office (117, 82, 2)) -[2019-12-04 04:57:58.725] EMOTE: *no key*/(grey baby slime (193)) lights up for a bit, then stops. (Xenobiology Lab (167, 93, 2)) -[2019-12-04 04:58:00.748] EMOTE: *no key*/(monkey (686)) rolls. (Genetics Lab (161, 117, 2)) -[2019-12-04 04:58:02.958] SAY: *no key*/(Poly) "Wire the solars, you lazy bums!" FORCED by poly (Chief Engineer's Office (118, 82, 2)) -[2019-12-04 04:58:08.935] EMOTE: *no key*/(cow) brays. (Holding Facility (103, 71, 1)) -[2019-12-04 04:58:12.930] SAY: *no key*/(Poly) "WHO TOOK THE DAMN HARDSUITS?" FORCED by poly (Chief Engineer's Office (118, 80, 2)) -[2019-12-04 04:58:14.726] EMOTE: *no key*/(Runtime) stretches out for a belly rub. (Chief Medical Officer's Office (159, 109, 2)) -[2019-12-04 04:58:18.932] EMOTE: *no key*/(Poly) bawks! (Chief Engineer's Office (117, 80, 2)) -[2019-12-04 04:58:20.933] SAY: *no key*/(Poly) "WHO TOOK THE DAMN HARDSUITS?" FORCED by poly (Chief Engineer's Office (117, 80, 2)) -[2019-12-04 04:58:22.741] EMOTE: *no key*/(grey baby slime (768)) bounces in place. (Xenobiology Lab (176, 94, 2)) -[2019-12-04 04:58:22.932] SAY: *no key*/(Poly) "WHO TOOK THE DAMN HARDSUITS?" FORCED by poly (Chief Engineer's Office (117, 80, 2)) -[2019-12-04 04:58:24.932] SAY: *no key*/(Runtime) "Esp!" FORCED by poly (Chief Medical Officer's Office (159, 109, 2)) -[2019-12-04 04:58:26.125] VOTE: Vote Result: Inconclusive - No Votes! -[2019-12-04 04:58:28.728] EMOTE: *no key*/(Travis) scratches. (Bar (136, 143, 2)) -[2019-12-04 04:58:32.928] EMOTE: *no key*/(mouse) shakes. (Starboard Bow Maintenance (161, 159, 2)) -[2019-12-04 04:58:42.929] EMOTE: *no key*/(Runtime) shakes its head. (Chief Medical Officer's Office (159, 109, 2)) -[2019-12-04 04:58:48.931] SAY: *no key*/(cow) "moo" FORCED by poly (Holding Facility (103, 71, 1)) -[2019-12-04 04:58:50.730] EMOTE: *no key*/(Ian) chases its tail! (Head of Personnel's Office (105, 121, 2)) -[2019-12-04 04:58:50.924] SAY: *no key*/(mouse) "SQUEAK!" FORCED by poly (Aft Maintenance (155, 87, 2)) -[2019-12-04 04:58:52.928] SAY: *no key*/(Poly) "WHO TOOK THE DAMN HARDSUITS?" FORCED by poly (Chief Engineer's Office (115, 79, 2)) -[2019-12-04 04:58:56.930] EMOTE: *no key*/(Poly) squawks. (Chief Engineer's Office (115, 79, 2)) -[2019-12-04 04:58:58.928] EMOTE: *no key*/(Poly) bawks! (Chief Engineer's Office (115, 79, 2)) -[2019-12-04 04:59:04.925] SAY: *no key*/(mouse) "SQUEAK!" FORCED by poly (Starboard Bow Maintenance (163, 159, 2)) -[2019-12-04 04:59:06.772] EMOTE: *no key*/(monkey (18)) waves her tail. (Virology (160, 100, 2)) -[2019-12-04 04:59:06.931] EMOTE: *no key*/(Ian) shakes its head. (Head of Personnel's Office (105, 121, 2)) -[2019-12-04 04:59:10.931] EMOTE: *no key*/(Paperwork) dozes off. (Cargo Bay (80, 118, 2)) -[2019-12-04 04:59:18.929] SAY: *no key*/(Poly) "OH GOD ITS ABOUT TO DELAMINATE CALL THE SHUTTLE" FORCED by poly (Chief Engineer's Office (115, 79, 2)) -[2019-12-04 04:59:24.930] EMOTE: *no key*/(�chicken) clucks. (Holding Facility (104, 71, 1)) -[2019-12-04 04:59:26.937] SAY: *no key*/(Nobody's Perfect) "I knew it, I should've been a plastic surgeon." (Wizard's Den (24, 75, 1)) -[2019-12-04 04:59:28.927] SAY: *no key*/(mouse) "SQUEAK!" FORCED by poly (Aft Maintenance (155, 87, 2)) -[2019-12-04 04:59:30.730] EMOTE: *no key*/(monkey (470)) scratches. (Genetics Lab (160, 118, 2)) -[2019-12-04 04:59:30.933] SAY: *no key*/(Tom) "SQUEAK!" FORCED by poly (Prison Wing (101, 189, 2)) -[2019-12-04 04:59:32.933] EMOTE: *no key*/(Poly) looks in the �Power-ON cartridge's direction and takes flight. (Chief Engineer's Office (115, 79, 2)) -[2019-12-04 04:59:36.756] EMOTE: *no key*/(monkey (686)) jumps! (Genetics Lab (160, 116, 2)) -[2019-12-04 04:59:38.935] EMOTE: *no key*/(Runtime) meows. (Chief Medical Officer's Office (159, 109, 2)) -[2019-12-04 04:59:48.726] EMOTE: *no key*/(monkey (153)) waves her tail. (Genetics Lab (160, 120, 2)) -[2019-12-04 04:59:50.743] EMOTE: *no key*/(monkey (301)) scratches. (Genetics Lab (160, 119, 2)) -[2019-12-04 04:59:54.929] EMOTE: *no key*/(cow) shakes its head. (Holding Facility (102, 72, 1)) -[2019-12-04 05:00:00.922] SAY: *no key*/(�Medibot) "I knew it, I should've been a plastic surgeon." (CentCom Transport Shuttle Dock (154, 73, 1)) -[2019-12-04 05:00:02.924] SAY: *no key*/(mouse) "Squeak?" FORCED by poly (Starboard Quarter Maintenance (171, 81, 2)) -[2019-12-04 05:00:18.928] SAY: *no key*/(mouse) "SQUEAK!" FORCED by poly (Aft Maintenance (146, 100, 2)) -[2019-12-04 05:00:20.729] EMOTE: *no key*/(monkey (470)) scratches. (Genetics Lab (160, 120, 2)) -[2019-12-04 05:00:20.928] EMOTE: *no key*/(Poly) flutters its wings. (Chief Engineer's Office (115, 79, 2)) -[2019-12-04 05:00:20.931] EMOTE: *no key*/(�chicken) clucks. (Holding Facility (104, 71, 1)) -[2019-12-04 05:00:20.935] SAY: *no key*/(Hijikata) "What kind of medbay is this? Everyone's dropping like flies." (Holding Facility (104, 53, 1)) -[2019-12-04 05:00:28.730] EMOTE: *no key*/(monkey (301)) waves her tail. (Genetics Lab (161, 120, 2)) -[2019-12-04 05:00:28.929] EMOTE: *no key*/(Poly) squawks. (Chief Engineer's Office (115, 79, 2)) -[2019-12-04 05:00:32.930] EMOTE: *no key*/(Runtime) mews. (Chief Medical Officer's Office (159, 109, 2)) -[2019-12-04 05:00:34.931] EMOTE: *no key*/(Paperwork) yawns. (Cargo Bay (81, 119, 2)) -[2019-12-04 05:00:36.929] EMOTE: *no key*/(Poly) squawks. (Chief Engineer's Office (115, 79, 2)) -[2019-12-04 05:00:38.926] EMOTE: *no key*/(mouse) squeaks. (Starboard Quarter Maintenance (196, 83, 2)) -[2019-12-04 05:00:38.931] SAY: *no key*/(�Medibot) "Radar, put a mask on!" (CentCom Transport Shuttle Dock (155, 73, 1)) -[2019-12-04 05:00:40.160] ADMIN: BigFatAnimeTiddies/(Alessandra Joghs) created a /obj/item/gun/energy/beam_rifle/debug -[2019-12-04 05:00:40.930] EMOTE: *no key*/(Poly) looks in the �Power-ON cartridge's direction and takes flight. (Chief Engineer's Office (115, 79, 2)) -[2019-12-04 05:00:40.932] EMOTE: *no key*/(Ian) pants. (Head of Personnel's Office (106, 120, 2)) -[2019-12-04 05:00:42.748] EMOTE: *no key*/(Ian) dances around. (Head of Personnel's Office (106, 120, 2)) -[2019-12-04 05:00:42.888] EMOTE: *no key*/(Alessandra Joghs) screams! (Genetics Lab (155, 115, 2)) -[2019-12-04 05:00:44.729] EMOTE: *no key*/(monkey (470)) scratches. (Genetics Lab (160, 120, 2)) -[2019-12-04 05:00:44.934] SAY: *no key*/(Poly) "OH GOD ITS ABOUT TO DELAMINATE CALL THE SHUTTLE" FORCED by poly (Chief Engineer's Office (116, 79, 2)) -[2019-12-04 05:00:50.928] EMOTE: *no key*/(mouse) squeaks. (Aft Maintenance (130, 108, 2)) -[2019-12-04 05:00:56.729] EMOTE: *no key*/(Ian) dances around. (Head of Personnel's Office (106, 120, 2)) -[2019-12-04 05:01:00.927] EMOTE: *no key*/(mouse) squeaks. (Starboard Bow Maintenance (163, 159, 2)) -[2019-12-04 05:01:02.930] EMOTE: *no key*/(Paperwork) snores. (Cargo Bay (81, 120, 2)) -[2019-12-04 05:01:04.935] SAY: *no key*/(Tom) "Squeak?" FORCED by poly (Prison Wing (103, 191, 2)) -[2019-12-04 05:01:08.932] SAY: *no key*/(Accidents Happen) "Delicious!" (Hotel Staff Room (200, 141, 3)) -[2019-12-04 05:01:14.927] EMOTE: *no key*/(Poly) squawks. (Chief Engineer's Office (115, 79, 2)) -[2019-12-04 05:01:16.925] EMOTE: *no key*/(mouse) squeaks. (Starboard Quarter Maintenance (170, 81, 2)) -[2019-12-04 05:01:16.929] SAY: *no key*/(Poly) "Check the crystal, you chucklefucks!" FORCED by poly (Chief Engineer's Office (115, 79, 2)) -[2019-12-04 05:01:18.929] SAY: *no key*/(emergency Medibot) "I knew it, I should've been a plastic surgeon." (Unexplored Location (227, 90, 4)) -[2019-12-04 05:01:24.931] EMOTE: *no key*/(�chicken) pecks at the ground. (Holding Facility (103, 72, 1)) -[2019-12-04 05:01:28.731] EMOTE: *no key*/(Runtime) sits down. (Chief Medical Officer's Office (159, 109, 2)) -[2019-12-04 05:01:30.719] EMOTE: BigFatAnimeTiddies/(Alessandra Joghs) gasps! (Medbay Central (152, 120, 2)) -[2019-12-04 05:01:30.931] SAY: *no key*/(Hijikata) "What kind of medbay is this? Everyone's dropping like flies." (Holding Facility (104, 53, 1)) -[2019-12-04 05:01:32.927] SAY: *no key*/(Accidents Happen) "What kind of medbay is this? Everyone's dropping like flies." (Hotel Staff Room (200, 141, 3)) -[2019-12-04 05:01:34.736] EMOTE: BigFatAnimeTiddies/(Alessandra Joghs) seizes up and falls limp, her eyes dead and lifeless... (Medbay Central (152, 120, 2)) -[2019-12-04 05:01:36.935] SAY: *no key*/(Poly) "Check the crystal, you chucklefucks!" FORCED by poly (Chief Engineer's Office (115, 79, 2)) -[2019-12-04 05:01:37.829] GAME: *no key*/(Alessandra Joghs) *no key*/(Alessandra Joghs) is no longer owning mob Unknown(/mob/living/carbon/human) (Medbay Central (152, 120, 2)) -[2019-12-04 05:01:37.830] ACCESS: Mob Login: BigFatAnimeTiddies/(Alessandra Joghs) was assigned to a /mob/dead/observer -[2019-12-04 05:01:37.841] GAME: BigFatAnimeTiddies/(Alessandra Joghs) Client BigFatAnimeTiddies/(Alessandra Joghs) has taken ownership of mob Alessandra Joghs(/mob/dead/observer) (Medbay Central (152, 120, 2)) -[2019-12-04 05:01:44.933] EMOTE: *no key*/(Poly) looks in the �Power-ON cartridge's direction and takes flight. (Chief Engineer's Office (115, 79, 2)) -[2019-12-04 05:01:46.936] SAY: *no key*/(Poly) "Wire the solars, you lazy bums!" FORCED by poly (Chief Engineer's Office (115, 79, 2)) -[2019-12-04 05:01:50.929] EMOTE: *no key*/(mouse) shakes. (Starboard Quarter Maintenance (196, 84, 2)) -[2019-12-04 05:01:52.736] EMOTE: *no key*/(Alessandra Joghs) seizes up and falls limp, her eyes dead and lifeless... (Genetics Lab (155, 115, 2)) -[2019-12-04 05:02:00.939] SAY: *no key*/(Nobody's Perfect) "There's always a catch, and I'm the best there is." (Wizard's Den (24, 75, 1)) -[2019-12-04 05:02:04.933] SAY: *no key*/(Poly) "Check the crystal, you chucklefucks!" FORCED by poly (Chief Engineer's Office (117, 82, 2)) -[2019-12-04 05:02:08.925] SAY: *no key*/(mouse) "Squeak?" FORCED by poly (Starboard Quarter Maintenance (196, 82, 2)) -[2019-12-04 05:02:08.927] SAY: *no key*/(mouse) "SQUEAK!" FORCED by poly (Starboard Bow Maintenance (164, 157, 2)) -[2019-12-04 05:02:08.932] SAY: *no key*/(Runtime) "Esp!" FORCED by poly (Chief Medical Officer's Office (159, 109, 2)) -[2019-12-04 05:02:14.929] SAY: *no key*/(Poly) "OH GOD ITS ABOUT TO DELAMINATE CALL THE SHUTTLE" FORCED by poly (Chief Engineer's Office (117, 81, 2)) -[2019-12-04 05:02:16.726] EMOTE: *no key*/(monkey (686)) scratches. (Genetics Lab (160, 116, 2)) -[2019-12-04 05:02:16.927] SAY: *no key*/(Poly) "OH GOD ITS ABOUT TO DELAMINATE CALL THE SHUTTLE" FORCED by poly (Chief Engineer's Office (117, 81, 2)) -[2019-12-04 05:02:20.740] EMOTE: *no key*/(Runtime) wags its tail. (Chief Medical Officer's Office (159, 109, 2)) -[2019-12-04 05:02:22.930] SAY: *no key*/(Poly) "Wire the solars, you lazy bums!" FORCED by poly (Chief Engineer's Office (115, 79, 2)) -[2019-12-04 05:02:26.926] SAY: *no key*/(Poly) "I have lived many lives!" FORCED by poly (Chief Engineer's Office (115, 79, 2)) -[2019-12-04 05:02:28.928] SAY: *no key*/(Poly) "Wire the solars, you lazy bums!" FORCED by poly (Chief Engineer's Office (115, 79, 2)) -[2019-12-04 05:02:32.925] SAY: *no key*/(mouse) "SQUEAK!" FORCED by poly (Starboard Quarter Maintenance (196, 82, 2)) -[2019-12-04 05:02:32.926] SAY: *no key*/(Accidents Happen) "Delicious!" (Hotel Staff Room (200, 141, 3)) -[2019-12-04 05:02:32.929] EMOTE: *no key*/(Poly) bawks! (Chief Engineer's Office (115, 79, 2)) -[2019-12-04 05:02:44.744] EMOTE: *no key*/(monkey (686)) rolls. (Genetics Lab (160, 117, 2)) -[2019-12-04 05:02:44.927] SAY: *no key*/(Poly) "Wire the solars, you lazy bums!" FORCED by poly (Chief Engineer's Office (115, 79, 2)) -[2019-12-04 05:02:46.925] EMOTE: *no key*/(mouse) squeaks. (Starboard Quarter Maintenance (167, 81, 2)) -[2019-12-04 05:02:46.928] SAY: *no key*/(Poly) "OH GOD ITS ABOUT TO DELAMINATE CALL THE SHUTTLE" FORCED by poly (Chief Engineer's Office (115, 79, 2)) -[2019-12-04 05:02:48.933] EMOTE: *no key*/(Poly) squawks. (Chief Engineer's Office (115, 79, 2)) -[2019-12-04 05:02:52.729] EMOTE: *no key*/(monkey (300)) rolls. (Genetics Lab (160, 119, 2)) -[2019-12-04 05:02:54.928] SAY: *no key*/(Poly) "OH GOD ITS ABOUT TO DELAMINATE CALL THE SHUTTLE" FORCED by poly (Chief Engineer's Office (115, 79, 2)) -[2019-12-04 05:02:58.933] EMOTE: *no key*/(Poly) flutters its wings. (Chief Engineer's Office (115, 79, 2)) -[2019-12-04 05:03:00.727] EMOTE: *no key*/(monkey (316)) jumps! (Virology (160, 100, 2)) -[2019-12-04 05:03:00.926] SAY: *no key*/(�Medibot) "What kind of medbay is this? Everyone's dropping like flies." (CentCom Transport Shuttle Dock (154, 73, 1)) -[2019-12-04 05:03:00.933] SAY: *no key*/(Hijikata) "Delicious!" (Holding Facility (104, 53, 1)) -[2019-12-04 05:03:08.727] EMOTE: *no key*/(Runtime) stops resting. (Chief Medical Officer's Office (159, 109, 2)) -[2019-12-04 05:03:10.728] EMOTE: *no key*/(Travis) jumps! (Bar (133, 142, 2)) -[2019-12-04 05:03:10.929] EMOTE: *no key*/(Poly) looks in the �Power-ON cartridge's direction and takes flight. (Chief Engineer's Office (115, 79, 2)) -[2019-12-04 05:03:14.731] EMOTE: *no key*/(Ian) dances around. (Head of Personnel's Office (105, 120, 2)) -[2019-12-04 05:03:18.930] SAY: *no key*/(Poly) "Check the crystal, you chucklefucks!" FORCED by poly (Chief Engineer's Office (116, 80, 2)) -[2019-12-04 05:03:24.923] EMOTE: *no key*/(mouse) runs in a circle. (Starboard Bow Maintenance (162, 156, 2)) -[2019-12-04 05:03:24.925] SAY: *no key*/(emergency Medibot) "Radar, put a mask on!" (Unexplored Location (227, 90, 4)) -[2019-12-04 05:03:24.928] EMOTE: *no key*/(Poly) flutters its wings. (Chief Engineer's Office (117, 82, 2)) -[2019-12-04 05:03:36.929] SAY: *no key*/(Hijikata) "Radar, put a mask on!" (Holding Facility (104, 53, 1)) -[2019-12-04 05:03:40.745] EMOTE: *no key*/(Runtime) wags its tail. (Chief Medical Officer's Office (159, 108, 2)) -[2019-12-04 05:03:42.925] SAY: *no key*/(�Medibot) "Delicious!" (CentCom Transport Shuttle Dock (155, 73, 1)) -[2019-12-04 05:03:54.924] SAY: *no key*/(Accidents Happen) "There's always a catch, and I'm the best there is." (Hotel Staff Room (200, 141, 3)) -[2019-12-04 05:03:56.928] EMOTE: *no key*/(Poly) squawks. (Chief Engineer's Office (119, 80, 2)) -[2019-12-04 05:04:00.743] EMOTE: *no key*/(Runtime) crouches on its hind legs. (Chief Medical Officer's Office (159, 108, 2)) -[2019-12-04 05:04:16.741] EMOTE: *no key*/(monkey (300)) scratches. (Genetics Lab (160, 119, 2)) -[2019-12-04 05:04:16.930] SAY: *no key*/(Poly) "WHO TOOK THE DAMN HARDSUITS?" FORCED by poly (Chief Engineer's Office (118, 79, 2)) -[2019-12-04 05:04:20.934] SAY: *no key*/(�chicken) "Bwaak bwak." FORCED by poly (Holding Facility (104, 71, 1)) -[2019-12-04 05:04:26.923] EMOTE: *no key*/(mouse) shakes. (Aft Maintenance (125, 106, 2)) -[2019-12-04 05:04:28.741] EMOTE: *no key*/(monkey (470)) rolls. (Genetics Lab (161, 117, 2)) -[2019-12-04 05:04:30.927] EMOTE: *no key*/(Poly) bawks! (Chief Engineer's Office (119, 79, 2)) -[2019-12-04 05:04:32.741] EMOTE: *no key*/(grey baby slime (193)) vibrates! (Xenobiology Lab (167, 93, 2)) -[2019-12-04 05:04:34.925] SAY: *no key*/(mouse) "SQUEAK!" FORCED by poly (Aft Maintenance (127, 105, 2)) -[2019-12-04 05:04:34.928] SAY: *no key*/(Poly) "Poly wanna cracker!" FORCED by poly (Chief Engineer's Office (118, 80, 2)) -[2019-12-04 05:04:36.926] SAY: *no key*/(Poly) "Wire the solars, you lazy bums!" FORCED by poly (Chief Engineer's Office (118, 81, 2)) -[2019-12-04 05:04:36.929] EMOTE: *no key*/(�chicken) clucks. (Holding Facility (104, 72, 1)) -[2019-12-04 05:04:40.746] EMOTE: *no key*/(monkey (301)) scratches. (Genetics Lab (160, 117, 2)) -[2019-12-04 05:04:52.923] EMOTE: *no key*/(mouse) runs in a circle. (Port Maintenance (61, 134, 2)) -[2019-12-04 05:04:52.927] SAY: *no key*/(Poly) "I have lived many lives!" FORCED by poly (Chief Engineer's Office (118, 79, 2)) -[2019-12-04 05:04:56.923] SAY: *no key*/(�Medibot) "What kind of medbay is this? Everyone's dropping like flies." (CentCom Transport Shuttle Dock (155, 73, 1)) -[2019-12-04 05:04:58.748] EMOTE: *no key*/(monkey (301)) scratches. (Genetics Lab (160, 116, 2)) -[2019-12-04 05:04:58.924] EMOTE: *no key*/(mouse) shakes. (Port Quarter Maintenance (95, 86, 2)) -[2019-12-04 05:05:04.725] EMOTE: *no key*/(monkey (495)) waves her tail. (Virology (157, 100, 2)) -[2019-12-04 05:05:06.930] EMOTE: *no key*/(�chicken) flaps its wings viciously. (Holding Facility (104, 71, 1)) -[2019-12-04 05:05:08.929] SAY: *no key*/(Poly) "Poly wanna cracker!" FORCED by poly (Chief Engineer's Office (118, 79, 2)) -[2019-12-04 05:05:12.743] EMOTE: *no key*/(Runtime) wags its tail. (Chief Medical Officer's Office (159, 108, 2)) -[2019-12-04 05:05:14.931] SAY: *no key*/(�chicken) "Cluck!" FORCED by poly (Holding Facility (104, 72, 1)) -[2019-12-04 05:05:16.926] SAY: *no key*/(�Medibot) "Radar, put a mask on!" (CentCom Transport Shuttle Dock (154, 73, 1)) -[2019-12-04 05:05:18.926] SAY: *no key*/(mouse) "SQUEAK!" FORCED by poly (Aft Maintenance (156, 87, 2)) -[2019-12-04 05:05:24.926] SAY: *no key*/(mouse) "Squeak!" FORCED by poly (Starboard Bow Maintenance (162, 159, 2)) -[2019-12-04 05:05:24.930] EMOTE: *no key*/(Poly) bawks! (Chief Engineer's Office (118, 79, 2)) -[2019-12-04 05:05:32.929] SAY: *no key*/(Hijikata) "Radar, put a mask on!" (Holding Facility (104, 53, 1)) -[2019-12-04 05:05:42.927] SAY: *no key*/(Runtime) "Esp!" FORCED by poly (Chief Medical Officer's Office (159, 108, 2)) -[2019-12-04 05:05:46.744] EMOTE: *no key*/(grey baby slime (193)) jiggles! (Xenobiology Lab (165, 92, 2)) -[2019-12-04 05:05:48.934] EMOTE: *no key*/(Tom) squeaks. (Prison Wing (101, 191, 2)) -[2019-12-04 05:05:51.422] GAME: Random Event triggering: Minor Space Dust (/datum/round_event/space_dust) -[2019-12-04 05:05:52.928] SAY: *no key*/(Poly) "Wire the solars, you lazy bums!" FORCED by poly (Chief Engineer's Office (115, 79, 2)) -[2019-12-04 05:06:02.923] SAY: *no key*/(mouse) "Squeak?" FORCED by poly (Aft Maintenance (157, 86, 2)) -[2019-12-04 05:06:04.742] EMOTE: *no key*/(monkey (301)) scratches. (Genetics Lab (161, 117, 2)) -[2019-12-04 05:06:08.924] SAY: *no key*/(mouse) "SQUEAK!" FORCED by poly (Port Maintenance (61, 135, 2)) -[2019-12-04 05:06:10.930] SAY: *no key*/(Poly) "OH GOD ITS ABOUT TO DELAMINATE CALL THE SHUTTLE" FORCED by poly (Chief Engineer's Office (115, 79, 2)) -[2019-12-04 05:06:14.926] EMOTE: *no key*/(Poly) bawks! (Chief Engineer's Office (115, 79, 2)) -[2019-12-04 05:06:18.933] SAY: *no key*/(Ian) "Bark!" FORCED by poly (Head of Personnel's Office (106, 118, 2)) -[2019-12-04 05:06:22.928] SAY: *no key*/(�Medibot) "There's always a catch, and I'm the best there is." (CentCom Transport Shuttle Dock (155, 73, 1)) -[2019-12-04 05:06:26.928] EMOTE: *no key*/(Poly) squawks. (Chief Engineer's Office (115, 79, 2)) -[2019-12-04 05:06:26.931] SAY: *no key*/(cow) "moo" FORCED by poly (Holding Facility (102, 72, 1)) -[2019-12-04 05:06:28.725] EMOTE: *no key*/(monkey (686)) scratches. (Genetics Lab (161, 116, 2)) -[2019-12-04 05:06:28.928] SAY: *no key*/(Poly) "OH GOD ITS ABOUT TO DELAMINATE CALL THE SHUTTLE" FORCED by poly (Chief Engineer's Office (115, 79, 2)) -[2019-12-04 05:06:38.930] SAY: *no key*/(mouse) "Squeak!" FORCED by poly (Port Maintenance (62, 135, 2)) -[2019-12-04 05:06:38.931] SAY: *no key*/(�Medibot) "Delicious!" (CentCom Transport Shuttle Dock (155, 73, 1)) -[2019-12-04 05:06:38.938] EMOTE: *no key*/(Poly) looks in the �Power-ON cartridge's direction and takes flight. (Chief Engineer's Office (115, 79, 2)) -[2019-12-04 05:06:42.927] EMOTE: *no key*/(Tom) squeaks. (Prison Wing (103, 190, 2)) -[2019-12-04 05:06:52.930] EMOTE: *no key*/(Poly) squawks. (Chief Engineer's Office (115, 79, 2)) -[2019-12-04 05:06:58.927] EMOTE: *no key*/(mouse) shakes. (Starboard Bow Maintenance (160, 156, 2)) -[2019-12-04 05:06:58.931] SAY: *no key*/(Runtime) "Meow!" FORCED by poly (Chief Medical Officer's Office (159, 108, 2)) -[2019-12-04 05:07:02.925] SAY: *no key*/(mouse) "SQUEAK!" FORCED by poly (Starboard Bow Maintenance (160, 156, 2)) -[2019-12-04 05:07:04.929] EMOTE: *no key*/(Poly) squawks. (Chief Engineer's Office (115, 79, 2)) -[2019-12-04 05:07:06.727] EMOTE: *no key*/(grey baby slime (193)) jiggles! (Xenobiology Lab (166, 94, 2)) -[2019-12-04 05:07:06.927] EMOTE: *no key*/(mouse) runs in a circle. (Starboard Quarter Maintenance (196, 82, 2)) -[2019-12-04 05:07:08.924] EMOTE: *no key*/(mouse) shakes. (Aft Maintenance (157, 87, 2)) -[2019-12-04 05:07:12.933] SAY: *no key*/(Hattori) "There's always a catch, and I'm the best there is." (Holding Facility (108, 45, 1)) -[2019-12-04 05:07:14.924] SAY: *no key*/(mouse) "Squeak!" FORCED by poly (Starboard Quarter Maintenance (166, 81, 2)) -[2019-12-04 05:07:18.931] SAY: *no key*/(Poly) "Wire the solars, you lazy bums!" FORCED by poly (Chief Engineer's Office (115, 79, 2)) -[2019-12-04 05:07:20.726] EMOTE: *no key*/(monkey (470)) scratches. (Genetics Lab (160, 119, 2)) -[2019-12-04 05:07:24.928] SAY: *no key*/(Ian) "Bark!" FORCED by poly (Head of Personnel's Office (105, 118, 2)) -[2019-12-04 05:07:28.929] SAY: *no key*/(Nobody's Perfect) "Delicious!" (Wizard's Den (24, 75, 1)) -[2019-12-04 05:07:30.928] SAY: *no key*/(�Medibot) "I knew it, I should've been a plastic surgeon." (CentCom Transport Shuttle Dock (155, 73, 1)) -[2019-12-04 05:07:40.958] EMOTE: *no key*/(Poly) looks in the �Power-ON cartridge's direction and takes flight. (Chief Engineer's Office (115, 79, 2)) -[2019-12-04 05:07:44.942] SAY: *no key*/(Poly) "WHO TOOK THE DAMN HARDSUITS?" FORCED by poly (Chief Engineer's Office (116, 79, 2)) -[2019-12-04 05:07:46.936] EMOTE: *no key*/(mouse) squeaks. (Aft Maintenance (146, 99, 2)) -[2019-12-04 05:07:46.942] EMOTE: *no key*/(Ian) chases its tail. (Head of Personnel's Office (104, 118, 2)) -[2019-12-04 05:07:50.740] EMOTE: *no key*/(monkey (470)) scratches. (Genetics Lab (160, 118, 2)) -[2019-12-04 05:07:54.744] EMOTE: *no key*/(Travis) scratches. (Bar (133, 142, 2)) -[2019-12-04 05:07:54.938] SAY: *no key*/(Poly) "OH GOD ITS ABOUT TO DELAMINATE CALL THE SHUTTLE" FORCED by poly (Chief Engineer's Office (116, 79, 2)) -[2019-12-04 05:07:56.956] SAY: *no key*/(Poly) "OH GOD ITS ABOUT TO DELAMINATE CALL THE SHUTTLE" FORCED by poly (Chief Engineer's Office (116, 79, 2)) -[2019-12-04 05:07:58.941] SAY: *no key*/(Poly) "OH GOD ITS ABOUT TO DELAMINATE CALL THE SHUTTLE" FORCED by poly (Chief Engineer's Office (116, 79, 2)) -[2019-12-04 05:08:04.942] EMOTE: *no key*/(Paperwork) snores. (Cargo Bay (83, 123, 2)) -[2019-12-04 05:08:06.939] SAY: *no key*/(Poly) "Poly wanna cracker!" FORCED by poly (Chief Engineer's Office (116, 79, 2)) -[2019-12-04 05:08:12.940] SAY: *no key*/(Poly) "WHO TOOK THE DAMN HARDSUITS?" FORCED by poly (Chief Engineer's Office (117, 81, 2)) -[2019-12-04 05:08:16.738] EMOTE: *no key*/(grey baby slime (768)) vibrates! (Xenobiology Lab (176, 92, 2)) -[2019-12-04 05:08:20.944] SAY: *no key*/(Hattori) "I knew it, I should've been a plastic surgeon." (Holding Facility (108, 45, 1)) -[2019-12-04 05:08:22.937] SAY: *no key*/(mouse) "SQUEAK!" FORCED by poly (Starboard Bow Maintenance (160, 156, 2)) -[2019-12-04 05:08:34.958] EMOTE: *no key*/(Runtime) shivers. (Chief Medical Officer's Office (159, 108, 2)) -[2019-12-04 05:08:40.941] EMOTE: *no key*/(Poly) flutters its wings. (Chief Engineer's Office (115, 79, 2)) -[2019-12-04 05:08:42.742] EMOTE: *no key*/(monkey (235)) rolls. (Virology (157, 101, 2)) -[2019-12-04 05:08:46.941] EMOTE: *no key*/(�chicken) clucks. (Holding Facility (104, 72, 1)) -[2019-12-04 05:08:48.938] EMOTE: *no key*/(mouse) squeaks. (Aft Maintenance (126, 109, 2)) -[2019-12-04 05:08:56.942] EMOTE: *no key*/(Poly) squawks. (Chief Engineer's Office (115, 79, 2)) -[2019-12-04 05:08:58.961] SAY: *no key*/(Poly) "WHO TOOK THE DAMN HARDSUITS?" FORCED by poly (Chief Engineer's Office (115, 79, 2)) -[2019-12-04 05:09:02.741] EMOTE: *no key*/(monkey (686)) jumps! (Genetics Lab (160, 117, 2)) -[2019-12-04 05:09:14.939] EMOTE: *no key*/(Poly) looks in the �Power-ON cartridge's direction and takes flight. (Chief Engineer's Office (115, 79, 2)) -[2019-12-04 05:09:16.939] EMOTE: *no key*/(Runtime) shakes its head. (Chief Medical Officer's Office (159, 108, 2)) -[2019-12-04 05:09:18.943] EMOTE: *no key*/(Ian) barks! (Head of Personnel's Office (103, 118, 2)) -[2019-12-04 05:09:22.936] SAY: *no key*/(emergency Medibot) "Delicious!" (Unexplored Location (227, 90, 4)) -[2019-12-04 05:09:30.940] SAY: *no key*/(Hijikata) "There's always a catch, and I'm the best there is." (Holding Facility (104, 53, 1)) -[2019-12-04 05:09:34.940] SAY: *no key*/(Poly) "Wire the solars, you lazy bums!" FORCED by poly (Chief Engineer's Office (115, 79, 2)) -[2019-12-04 05:09:38.740] EMOTE: *no key*/(Runtime) walks around. (Chief Medical Officer's Office (159, 108, 2)) -[2019-12-04 05:09:38.938] SAY: *no key*/(�Medibot) "What kind of medbay is this? Everyone's dropping like flies." (CentCom Transport Shuttle Dock (154, 73, 1)) -[2019-12-04 05:09:42.938] SAY: *no key*/(emergency Medibot) "Radar, put a mask on!" (Unexplored Location (227, 90, 4)) -[2019-12-04 05:09:56.741] EMOTE: *no key*/(Runtime) crouches on its hind legs. (Chief Medical Officer's Office (159, 108, 2)) -[2019-12-04 05:10:00.939] EMOTE: *no key*/(Poly) squawks. (Chief Engineer's Office (115, 79, 2)) -[2019-12-04 05:10:02.935] SAY: *no key*/(mouse) "Squeak?" FORCED by poly (Aft Maintenance (121, 105, 2)) -[2019-12-04 05:10:06.737] EMOTE: *no key*/(grey baby slime (193)) bounces in place. (Xenobiology Lab (167, 93, 2)) -[2019-12-04 05:10:06.937] SAY: *no key*/(Accidents Happen) "I knew it, I should've been a plastic surgeon." (Hotel Staff Room (200, 141, 3)) -[2019-12-04 05:10:12.737] EMOTE: *no key*/(butterfly) stops moving... (Unexplored Location (194, 48, 3)) -[2019-12-04 05:10:12.741] EMOTE: *no key*/(Runtime) lies down. (Chief Medical Officer's Office (159, 108, 2)) -[2019-12-04 05:10:14.939] EMOTE: *no key*/(Poly) looks in the �Power-ON cartridge's direction and takes flight. (Chief Engineer's Office (115, 79, 2)) -[2019-12-04 05:10:14.940] SAY: *no key*/(Poly) "Check the crystal, you chucklefucks!" FORCED by poly (Chief Engineer's Office (115, 79, 2)) -[2019-12-04 05:10:16.936] EMOTE: *no key*/(mouse) shakes. (Aft Maintenance (160, 86, 2)) -[2019-12-04 05:10:20.939] SAY: *no key*/(mouse) "Squeak?" FORCED by poly (Aft Maintenance (126, 109, 2)) -[2019-12-04 05:10:20.944] SAY: *no key*/(Poly) "OH GOD ITS ABOUT TO DELAMINATE CALL THE SHUTTLE" FORCED by poly (Chief Engineer's Office (116, 79, 2)) -[2019-12-04 05:10:20.948] EMOTE: *no key*/(cow) brays. (Holding Facility (102, 72, 1)) -[2019-12-04 05:10:22.942] SAY: *no key*/(Tom) "SQUEAK!" FORCED by poly (Prison Wing (103, 191, 2)) -[2019-12-04 05:10:30.936] SAY: *no key*/(�Medibot) "What kind of medbay is this? Everyone's dropping like flies." (CentCom Transport Shuttle Dock (154, 73, 1)) -[2019-12-04 05:10:36.935] EMOTE: *no key*/(mouse) runs in a circle. (Port Maintenance (64, 136, 2)) -[2019-12-04 05:10:36.938] SAY: *no key*/(Poly) "Check the crystal, you chucklefucks!" FORCED by poly (Chief Engineer's Office (115, 79, 2)) -[2019-12-04 05:10:42.939] EMOTE: *no key*/(Paperwork) snores. (Cargo Bay (83, 121, 2)) -[2019-12-04 05:10:44.740] EMOTE: *no key*/(monkey (316)) jumps! (Virology (161, 99, 2)) -[2019-12-04 05:10:48.941] EMOTE: *no key*/(Poly) squawks. (Chief Engineer's Office (115, 79, 2)) -[2019-12-04 05:10:58.940] SAY: *no key*/(Poly) "OH GOD ITS ABOUT TO DELAMINATE CALL THE SHUTTLE" FORCED by poly (Chief Engineer's Office (115, 79, 2)) -[2019-12-04 05:11:08.942] SAY: *no key*/(Poly) "OH GOD ITS ABOUT TO DELAMINATE CALL THE SHUTTLE" FORCED by poly (Chief Engineer's Office (115, 79, 2)) -[2019-12-04 05:11:12.740] EMOTE: *no key*/(monkey (474)) scratches. (Genetics Lab (160, 120, 2)) -[2019-12-04 05:11:12.936] EMOTE: *no key*/(mouse) shakes. (Starboard Quarter Maintenance (163, 81, 2)) -[2019-12-04 05:11:12.937] SAY: *no key*/(�Medibot) "Delicious!" (CentCom Transport Shuttle Dock (155, 73, 1)) -[2019-12-04 05:11:12.942] SAY: *no key*/(Poly) "I have lived many lives!" FORCED by poly (Chief Engineer's Office (115, 79, 2)) -[2019-12-04 05:11:16.942] EMOTE: *no key*/(Poly) looks in the �Power-ON cartridge's direction and takes flight. (Chief Engineer's Office (115, 79, 2)) -[2019-12-04 05:11:17.435] GAME: Random Event triggering: Shuttle Loan (/datum/round_event/shuttle_loan) -[2019-12-04 05:11:18.938] SAY: *no key*/(Poly) "Check the crystal, you chucklefucks!" FORCED by poly (Chief Engineer's Office (115, 79, 2)) -[2019-12-04 05:11:20.937] SAY: *no key*/(emergency Medibot) "There's always a catch, and I'm the best there is." (Unexplored Location (227, 90, 4)) -[2019-12-04 05:11:26.740] EMOTE: *no key*/(monkey (686)) waves her tail. (Genetics Lab (161, 120, 2)) -[2019-12-04 05:11:30.938] SAY: *no key*/(Poly) "Wire the solars, you lazy bums!" FORCED by poly (Chief Engineer's Office (116, 79, 2)) -[2019-12-04 05:11:38.942] SAY: *no key*/(Hijikata) "There's always a catch, and I'm the best there is." (Holding Facility (104, 53, 1)) -[2019-12-04 05:11:42.941] SAY: *no key*/(Nobody's Perfect) "Radar, put a mask on!" (Wizard's Den (24, 75, 1)) -[2019-12-04 05:11:44.939] SAY: *no key*/(Poly) "I have lived many lives!" FORCED by poly (Chief Engineer's Office (117, 82, 2)) -[2019-12-04 05:11:46.941] SAY: *no key*/(emergency Medibot) "What kind of medbay is this? Everyone's dropping like flies." (Unexplored Location (227, 90, 4)) -[2019-12-04 05:11:48.940] EMOTE: *no key*/(Poly) squawks. (Chief Engineer's Office (117, 82, 2)) -[2019-12-04 05:11:50.936] EMOTE: *no key*/(mouse) runs in a circle. (Aft Maintenance (146, 94, 2)) -[2019-12-04 05:12:02.942] SAY: *no key*/(Hattori) "I knew it, I should've been a plastic surgeon." (Holding Facility (108, 45, 1)) -[2019-12-04 05:12:04.941] SAY: *no key*/(Tom) "Squeak!" FORCED by poly (Prison Wing (104, 189, 2)) -[2019-12-04 05:12:04.943] SAY: *no key*/(Hattori) "I knew it, I should've been a plastic surgeon." (Holding Facility (108, 45, 1)) -[2019-12-04 05:12:10.743] EMOTE: *no key*/(monkey (470)) rolls. (Genetics Lab (161, 118, 2)) -[2019-12-04 05:12:10.940] EMOTE: *no key*/(Poly) bawks! (Chief Engineer's Office (115, 79, 2)) -[2019-12-04 05:12:16.742] EMOTE: *no key*/(monkey (470)) waves her tail. (Genetics Lab (161, 118, 2)) -[2019-12-04 05:12:16.743] EMOTE: *no key*/(Ian) dances around. (Head of Personnel's Office (104, 118, 2)) -[2019-12-04 05:12:18.942] SAY: *no key*/(Poly) "I have lived many lives!" FORCED by poly (Chief Engineer's Office (115, 79, 2)) -[2019-12-04 05:12:22.943] SAY: *no key*/(Poly) "Poly wanna cracker!" FORCED by poly (Chief Engineer's Office (115, 79, 2)) -[2019-12-04 05:12:28.937] SAY: *no key*/(�Medibot) "What kind of medbay is this? Everyone's dropping like flies." (CentCom Transport Shuttle Dock (154, 73, 1)) -[2019-12-04 05:12:30.937] SAY: *no key*/(mouse) "SQUEAK!" FORCED by poly (Aft Maintenance (147, 95, 2)) -[2019-12-04 05:12:30.941] EMOTE: *no key*/(Runtime) shivers. (Chief Medical Officer's Office (159, 108, 2)) -[2019-12-04 05:12:32.939] EMOTE: *no key*/(Poly) flutters its wings. (Chief Engineer's Office (115, 79, 2)) -[2019-12-04 05:12:34.528] GAME: Rebooting World. Initiated by BigFatAnimeTiddies. -[2019-12-04 05:12:34.891] ACCESS: Logout: BigFatAnimeTiddies/(Alessandra Joghs) -[2019-12-04 05:12:34.892] GAME: BigFatAnimeTiddies[DC]/(Alessandra Joghs) BigFatAnimeTiddies[DC]/(Alessandra Joghs) is no longer owning mob Alessandra Joghs(/mob/dead/observer) (Genetics Lab (154, 115, 2)) diff --git a/data/logs/2019/12/03/round-23.56.34/gravity.html b/data/logs/2019/12/03/round-23.56.34/gravity.html deleted file mode 100644 index b349b969..00000000 --- a/data/logs/2019/12/03/round-23.56.34/gravity.html +++ /dev/null @@ -1,6 +0,0 @@ -23:56:53 [0x20070f6] (113,123,2) || the gravitational generator has regained power.
-23:56:53 [0x20070f6] (113,123,2) || the gravitational generator is now charging.
-23:57:06 [0x20070f6] (113,123,2) || the gravitational generator has regained power.
-23:57:06 [0x20070f6] (113,123,2) || the gravitational generator is now charging.
-23:57:33 [0x20070f6] (113,123,2) || the gravitational generator has regained power.
-23:57:33 [0x20070f6] (113,123,2) || the gravitational generator is now charging.
diff --git a/data/logs/2019/12/03/round-23.56.34/hrefs.log b/data/logs/2019/12/03/round-23.56.34/hrefs.log deleted file mode 100644 index 81de7487..00000000 --- a/data/logs/2019/12/03/round-23.56.34/hrefs.log +++ /dev/null @@ -1,24 +0,0 @@ -[2019-12-04 04:56:34.966] Starting up round ID . - - ------------------------- -[2019-12-04 04:56:38.079] HREF: BigFatAnimeTiddies (usr:BigFatAnimeTiddies[(11,174,1)]) : _src_=chat&proc=analyzeClientData¶m[cookie]={"connData":[{"ckey":"bigfatanimetiddies","ip":"68.38.94.206","compid":"3498261404"},{"ckey":"bigfatanimetiddies","ip":null,"compid":"3498261404"},{"ckey":"bigfatanimetiddies","ip":"127.0.0.1","compid":"3498261404"},{"ckey":"guest3498261404","ip":null,"compid":"3498261404"}]} -[2019-12-04 04:56:41.202] HREF: BigFatAnimeTiddies (usr:BigFatAnimeTiddies[(11,174,1)]) : BigFatAnimeTiddies src=[mob_9];ready=1 -[2019-12-04 04:57:37.303] HREF: BigFatAnimeTiddies (usr:Alessandra Joghs[(158,110,2)]) : bigfatanimetiddies's admin datum (!localhost!) src=[0x210012a7];admin_token=2101191870830460770617956292401075;create_object=1 -[2019-12-04 04:57:41.476] HREF: BigFatAnimeTiddies (usr:Alessandra Joghs[(158,110,2)]) : bigfatanimetiddies's admin datum (!localhost!) src=%5B0x210012a7%5D%3Badmin_token%3D2101191870830460770617956292401075&admin_token=2101191870830460770617956292401075&filter=part&offset=x%2Cy%2Cz&offset_type=relative&object_count=1&object_dir=&object_name=&object_where=onfloor -[2019-12-04 04:57:45.362] HREF: BigFatAnimeTiddies (usr:Alessandra Joghs[(158,110,2)]) : bigfatanimetiddies's admin datum (!localhost!) src=%5B0x210012a7%5D%3Badmin_token%3D2101191870830460770617956292401075&admin_token=2101191870830460770617956292401075&filter=part&offset=x%2Cy%2Cz&offset_type=relative&object_count=1&object_dir=&object_name=&object_where=onfloor&object_list=%2Fobj%2Fitem%2Fstorage%2Fbox%2Fstockparts%2Fdeluxe -[2019-12-04 04:57:47.027] HREF: BigFatAnimeTiddies (usr:Alessandra Joghs[(158,110,2)]) : bigfatanimetiddies's admin datum (!localhost!) src=%5B0x210012a7%5D%3Badmin_token%3D2101191870830460770617956292401075&admin_token=2101191870830460770617956292401075&filter=part&offset=x%2Cy%2Cz&offset_type=relative&object_count=1&object_dir=&object_name=&object_where=onfloor&object_list=%2Fobj%2Fitem%2Fstorage%2Fpart_replacer%2Fbluespace -[2019-12-04 04:58:09.110] HREF: BigFatAnimeTiddies (usr:Alessandra Joghs[(153,114,2)]) : The cloning console src=[0x200798f];task=autoprocess -[2019-12-04 04:58:15.205] HREF: BigFatAnimeTiddies (usr:Alessandra Joghs[(153,114,2)]) : The cloning console src=[0x200798f];menu=2 -[2019-12-04 04:58:15.995] HREF: BigFatAnimeTiddies (usr:Alessandra Joghs[(153,114,2)]) : The cloning console src=[0x200798f];view_rec=bbfb -[2019-12-04 04:58:16.675] HREF: BigFatAnimeTiddies (usr:Alessandra Joghs[(153,114,2)]) : The cloning console src=[0x200798f];clone=bbfb;empty=TRUE -[2019-12-04 04:59:48.802] HREF: BigFatAnimeTiddies (usr:Alessandra Joghs[(153,113,2)]) : The cloning console src=[0x200798f];menu=2 -[2019-12-04 04:59:50.993] HREF: BigFatAnimeTiddies (usr:Alessandra Joghs[(154,114,2)]) : The cloning console src=[0x200798f];view_rec=bbfb -[2019-12-04 04:59:53.937] HREF: BigFatAnimeTiddies (usr:Alessandra Joghs[(154,114,2)]) : The cloning console src=[0x200798f];clone=bbfb -[2019-12-04 04:59:59.168] HREF: BigFatAnimeTiddies (usr:Alessandra Joghs[(154,114,2)]) : The cloning console src=[0x200798f];del_rec=1 -[2019-12-04 05:00:02.462] HREF: BigFatAnimeTiddies (usr:Alessandra Joghs[(154,114,2)]) : The cloning console src=[0x200798f];del_rec=1 -[2019-12-04 05:00:03.656] HREF: BigFatAnimeTiddies (usr:Alessandra Joghs[(154,114,2)]) : The cloning console src=[0x200798f];menu=1 -[2019-12-04 05:00:09.130] HREF: BigFatAnimeTiddies (usr:Alessandra Joghs[(0,0,0)]) : The cloning console src=[0x200798f];refresh=1 -[2019-12-04 05:00:12.768] HREF: BigFatAnimeTiddies (usr:Alessandra Joghs[(153,113,2)]) : The cloning console src=[0x200798f];menu=2 -[2019-12-04 05:00:15.074] HREF: BigFatAnimeTiddies (usr:Alessandra Joghs[(154,114,2)]) : The cloning console src=[0x200798f];view_rec=bbfb -[2019-12-04 05:00:23.550] HREF: BigFatAnimeTiddies (usr:Alessandra Joghs[(154,114,2)]) : bigfatanimetiddies's admin datum (!localhost!) src=[0x210012a7];admin_token=2101191870830460770617956292401075;create_object=1 -[2019-12-04 05:00:40.157] HREF: BigFatAnimeTiddies (usr:Alessandra Joghs[(154,115,2)]) : bigfatanimetiddies's admin datum (!localhost!) src=%5B0x210012a7%5D%3Badmin_token%3D2101191870830460770617956292401075&admin_token=2101191870830460770617956292401075&filter=debug&offset=x%2Cy%2Cz&offset_type=relative&object_count=1&object_dir=&object_name=&object_where=onfloor&object_list=%2Fobj%2Fitem%2Fgun%2Fenergy%2Fbeam_rifle%2Fdebug -[2019-12-04 05:01:43.838] HREF: BigFatAnimeTiddies (usr:Alessandra Joghs[(154,114,2)]) : The cloning console src=[0x200798f];clone=bbfb diff --git a/data/logs/2019/12/03/round-23.56.34/initialize.log b/data/logs/2019/12/03/round-23.56.34/initialize.log deleted file mode 100644 index 965ddcdf..00000000 --- a/data/logs/2019/12/03/round-23.56.34/initialize.log +++ /dev/null @@ -1,835 +0,0 @@ -Path : /mob/dview -- Didn't call atom/Initialize() -Path : /obj/item/clothing/mask/breath -- Didn't return an Initialize hint -Path : /obj/item/clothing/mask/cigarette/cigar/cohiba -- Didn't return an Initialize hint -Path : /obj/item/clothing/mask/cigarette/cigar/havana -- Didn't return an Initialize hint -Path : /obj/item/clothing/mask/cigarette/cigar -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/color/red -- Didn't return an Initialize hint -Path : /obj/item/clothing/shoes/sneakers/brown -- Didn't return an Initialize hint -Path : /obj/item/clothing/suit/armor/vest -- Didn't return an Initialize hint -Path : /obj/item/clothing/head/helmet/swat -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/color/green -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/jabroni -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/geisha -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/kilt -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/roman -- Didn't return an Initialize hint -Path : /obj/item/clothing/suit/armor/tdome/red -- Didn't return an Initialize hint -Path : /obj/item/clothing/head/helmet/thunderdome -- Didn't return an Initialize hint -Path : /obj/item/clothing/suit/armor/tdome/green -- Didn't return an Initialize hint -Path : /obj/item/clothing/mask/surgical -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/plasmaman -- Didn't return an Initialize hint -Path : /obj/item/clothing/head/helmet/space/plasmaman -- Didn't return an Initialize hint -Path : /obj/item/clothing/head/chefhat -- Didn't return an Initialize hint -Path : /obj/item/clothing/suit/apron/chef -- Didn't return an Initialize hint -Path : /obj/item/clothing/accessory/medal/gold -- Didn't return an Initialize hint -Path : /obj/item/clothing/accessory/medal -- Didn't return an Initialize hint -Path : /obj/structure/closet/secure_closet/freezer/meat -- Didn't return an Initialize hint -Path : /obj/structure/closet/secure_closet/freezer/fridge -- Didn't return an Initialize hint -Path : /obj/structure/closet/secure_closet/freezer/kitchen -- Didn't return an Initialize hint -Path : /obj/item/clothing/accessory/lawyers_badge -- Didn't return an Initialize hint -Path : /obj/item/clothing/accessory/medal/silver -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/waiter -- Didn't return an Initialize hint -Path : /obj/item/clothing/accessory/waistcoat -- Didn't return an Initialize hint -Path : /obj/item/clothing/head/soft/mime -- Didn't return an Initialize hint -Path : /obj/item/clothing/suit/toggle/chef -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/rank/chef -- Didn't return an Initialize hint -Path : /obj/item/clothing/suit/wizrobe/black -- Didn't return an Initialize hint -Path : /obj/item/clothing/head/wizard/black -- Didn't return an Initialize hint -Path : /obj/item/clothing/head/helmet/sec -- Didn't return an Initialize hint -Path : /obj/item/clothing/glasses/hud/security/sunglasses -- Didn't return an Initialize hint -Path : /obj/item/clothing/head/helmet/swat/nanotrasen -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/syndicate -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/syndicate/skirt -- Didn't return an Initialize hint -Path : /obj/item/clothing/shoes/sneakers/black -- Didn't return an Initialize hint -Path : /obj/item/clothing/glasses/night -- Didn't return an Initialize hint -Path : /obj/item/clothing/mask/gas -- Didn't return an Initialize hint -Path : /obj/item/clothing/shoes/sandal/marisa -- Didn't return an Initialize hint -Path : /obj/item/clothing/suit/wizrobe/marisa -- Didn't return an Initialize hint -Path : /obj/item/clothing/head/wizard/marisa -- Didn't return an Initialize hint -Path : /obj/item/clothing/suit/wizrobe/red -- Didn't return an Initialize hint -Path : /obj/item/clothing/head/wizard/red -- Didn't return an Initialize hint -Path : /obj/item/clothing/shoes/sandal/magic -- Didn't return an Initialize hint -Path : /obj/item/clothing/gloves/color/latex -- Didn't return an Initialize hint -Path : /obj/item/clothing/suit/wizrobe/magusblue -- Didn't return an Initialize hint -Path : /obj/item/clothing/head/wizard/magus -- Didn't return an Initialize hint -Path : /obj/item/clothing/suit/wizrobe/magusred -- Didn't return an Initialize hint -Path : /obj/item/clothing/shoes/magboots -- Didn't return an Initialize hint -Path : /obj/item/clothing/ears/earmuffs -- Didn't return an Initialize hint -Path : /obj/item/clothing/head/helmet/space/hardsuit/deathsquad -- Didn't return an Initialize hint -Path : /obj/item/clothing/suit/space/hardsuit/deathsquad -- Didn't return an Initialize hint -Path : /obj/item/clothing/gloves/combat -- Didn't return an Initialize hint -Path : /obj/item/clothing/shoes/combat/swat -- Didn't return an Initialize hint -Path : /obj/item/clothing/mask/gas/sechailer/swat -- Didn't return an Initialize hint -Path : /obj/item/clothing/accessory/medal/gold/captain -- Didn't return an Initialize hint -Path : /obj/item/clothing/accessory/medal/silver/valor -- Didn't return an Initialize hint -Path : /obj/item/clothing/accessory/medal/silver/security -- Didn't return an Initialize hint -Path : /obj/item/clothing/accessory/medal/bronze_heart -- Didn't return an Initialize hint -Path : /obj/item/clothing/accessory/medal/plasma/nobel_science -- Didn't return an Initialize hint -Path : /obj/item/clothing/accessory/medal/conduct -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/rank/curator/treasure_hunter -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/skirt/black -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/shorts/black -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/pants/track -- Didn't return an Initialize hint -Path : /obj/item/clothing/accessory/armband/deputy -- Didn't return an Initialize hint -Path : /obj/item/clothing/shoes/jackboots -- Didn't return an Initialize hint -Path : /obj/item/clothing/shoes/laceup -- Didn't return an Initialize hint -Path : /obj/item/clothing/neck/stripedredscarf -- Didn't return an Initialize hint -Path : /obj/item/clothing/neck/tie/red -- Didn't return an Initialize hint -Path : /obj/item/clothing/head/helmet/space/beret -- Didn't return an Initialize hint -Path : /obj/item/clothing/suit/curator -- Didn't return an Initialize hint -Path : /obj/item/clothing/suit/space/officer -- Didn't return an Initialize hint -Path : /obj/item/clothing/gloves/fingerless -- Didn't return an Initialize hint -Path : /obj/item/clothing/gloves/color/black -- Didn't return an Initialize hint -Path : /obj/item/clothing/glasses/eyepatch -- Didn't return an Initialize hint -Path : /obj/item/clothing/head/hooded/winterhood/cargo -- Didn't return an Initialize hint -Path : /obj/item/clothing/suit/hooded/wintercoat/cargo -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/rank/cargotech -- Didn't return an Initialize hint -Path : /obj/item/clothing/head/soft -- Didn't return an Initialize hint -Path : /obj/item/clothing/neck/cloak/qm -- Didn't return an Initialize hint -Path : /obj/item/clothing/head/beret/qm -- Didn't return an Initialize hint -Path : /obj/item/clothing/accessory/medal/ribbon/cargo -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/rank/cargo -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/rank/cargo/skirt -- Didn't return an Initialize hint -Path : /obj/item/clothing/suit/fire/firefighter -- Didn't return an Initialize hint -Path : /obj/item/clothing/head/hooded/winterhood/qm -- Didn't return an Initialize hint -Path : /obj/item/clothing/suit/hooded/wintercoat/qm -- Didn't return an Initialize hint -Path : /obj/item/clothing/suit/judgerobe -- Didn't return an Initialize hint -Path : /obj/item/clothing/head/powdered_wig -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/lawyer/female -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/lawyer/black -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/lawyer/red -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/lawyer/bluesuit -- Didn't return an Initialize hint -Path : /obj/item/clothing/suit/toggle/lawyer -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/lawyer/purpsuit -- Didn't return an Initialize hint -Path : /obj/item/clothing/suit/toggle/lawyer/purple -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/lawyer/blacksuit -- Didn't return an Initialize hint -Path : /obj/item/clothing/suit/toggle/lawyer/black -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/trek/medsci -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/trek/command -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/trek/engsec -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/schoolgirl/green -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/schoolgirl -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/schoolgirl/orange -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/schoolgirl/red -- Didn't return an Initialize hint -Path : /obj/item/clothing/suit/armor/riot/knight/blue -- Didn't return an Initialize hint -Path : /obj/item/clothing/head/helmet/knight/blue -- Didn't return an Initialize hint -Path : /obj/item/clothing/head/crown/fancy -- Didn't return an Initialize hint -Path : /obj/item/clothing/suit/armor/riot/knight/red -- Didn't return an Initialize hint -Path : /obj/item/clothing/head/helmet/knight/red -- Didn't return an Initialize hint -Path : /obj/item/clothing/suit/nun -- Didn't return an Initialize hint -Path : /obj/item/clothing/head/nun_hood -- Didn't return an Initialize hint -Path : /obj/item/clothing/suit/holidaypriest -- Didn't return an Initialize hint -Path : /obj/item/clothing/suit/beekeeper_suit -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/color/white -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/skirt/color/white -- Didn't return an Initialize hint -Path : /obj/item/clothing/shoes/sneakers/white -- Didn't return an Initialize hint -Path : /obj/item/clothing/head/beekeeper_head -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/color/rainbow -- Didn't return an Initialize hint -Path : /obj/item/clothing/glasses/sunglasses -- Didn't return an Initialize hint -Path : /obj/item/clothing/gloves/color/latex/nitrile -- Didn't return an Initialize hint -Path : /obj/item/clothing/suit/apron/surgical -- Didn't return an Initialize hint -Path : /obj/item/clothing/mask/cigarette/pipe -- Didn't return an Initialize hint -Path : /obj/item/clothing/suit/bomb_suit -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/color/black -- Didn't return an Initialize hint -Path : /obj/item/clothing/head/bomb_hood -- Didn't return an Initialize hint -Path : /obj/item/clothing/suit/bomb_suit/security -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/rank/security -- Didn't return an Initialize hint -Path : /obj/item/clothing/head/bomb_hood/security -- Didn't return an Initialize hint -Path : /obj/item/clothing/suit/armor/bulletproof -- Didn't return an Initialize hint -Path : /obj/item/clothing/head/helmet/alt -- Didn't return an Initialize hint -Path : /obj/item/clothing/suit/armor/riot -- Didn't return an Initialize hint -Path : /obj/item/clothing/head/helmet/riot -- Didn't return an Initialize hint -Path : /obj/item/clothing/suit/armor/laserproof -- Didn't return an Initialize hint -Path : /obj/item/clothing/suit/bio_suit/security -- Didn't return an Initialize hint -Path : /obj/item/clothing/head/bio_hood/security -- Didn't return an Initialize hint -Path : /obj/item/clothing/head/helmet/space/hardsuit/security/hos -- Didn't return an Initialize hint -Path : /obj/item/clothing/suit/space/hardsuit/security/hos -- Didn't return an Initialize hint -Path : /obj/item/clothing/mask/gas/sechailer -- Didn't return an Initialize hint -Path : /obj/item/clothing/neck/cloak/hos -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/hosparadefem -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/hosparademale -- Didn't return an Initialize hint -Path : /obj/item/clothing/suit/armor/vest/leather -- Didn't return an Initialize hint -Path : /obj/item/clothing/suit/armor/hos -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/rank/head_of_security/skirt -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/rank/head_of_security/alt -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/rank/head_of_security/alt/skirt -- Didn't return an Initialize hint -Path : /obj/item/clothing/head/HoS -- Didn't return an Initialize hint -Path : /obj/item/clothing/glasses/hud/security/sunglasses/eyepatch -- Didn't return an Initialize hint -Path : /obj/item/clothing/glasses/hud/security/sunglasses/gars/supergars -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/rank/head_of_security/grey -- Didn't return an Initialize hint -Path : /obj/item/clothing/head/hooded/winterhood/hos -- Didn't return an Initialize hint -Path : /obj/item/clothing/suit/hooded/wintercoat/hos -- Didn't return an Initialize hint -Path : /obj/item/clothing/head/helmet/space/hardsuit/security -- Didn't return an Initialize hint -Path : /obj/item/clothing/suit/space/hardsuit/security -- Didn't return an Initialize hint -Path : /obj/item/clothing/suit/straight_jacket -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/rank/prisoner -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/rank/prisoner/skirt -- Didn't return an Initialize hint -Path : /obj/item/clothing/shoes/sneakers/orange -- Didn't return an Initialize hint -Path : /obj/item/clothing/head/helmet -- Didn't return an Initialize hint -Path : /obj/item/clothing/suit/armor/vest/warden -- Didn't return an Initialize hint -Path : /obj/item/clothing/head/warden -- Didn't return an Initialize hint -Path : /obj/item/clothing/head/warden/drill -- Didn't return an Initialize hint -Path : /obj/item/clothing/head/beret/sec/navywarden -- Didn't return an Initialize hint -Path : /obj/item/clothing/suit/armor/vest/warden/alt -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/rank/warden/navyblue -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/rank/warden/skirt -- Didn't return an Initialize hint -Path : /obj/item/clothing/gloves/krav_maga/sec -- Didn't return an Initialize hint -Path : /obj/item/clothing/gloves/color/brown -- Didn't return an Initialize hint -Path : /obj/item/clothing/suit/jacket -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/polychromic/jumpsuit -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/polychromic/shirt -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/polychromic/kilt -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/polychromic/skirt -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/polychromic/shorts -- Didn't return an Initialize hint -Path : /obj/item/clothing/mask/bandana/red -- Didn't return an Initialize hint -Path : /obj/item/clothing/mask/bandana/blue -- Didn't return an Initialize hint -Path : /obj/item/clothing/mask/bandana/gold -- Didn't return an Initialize hint -Path : /obj/item/clothing/head/hardhat/red -- Didn't return an Initialize hint -Path : /obj/item/clothing/glasses/meson -- Didn't return an Initialize hint -Path : /obj/item/clothing/gloves/color/rainbow -- Didn't return an Initialize hint -Path : /obj/item/clothing/head/hooded/flashsuit -- Didn't return an Initialize hint -Path : /obj/item/clothing/suit/hooded/flashsuit -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/shorts/purple -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/shorts/grey -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/shorts/red -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/shorts/blue -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/shorts/green -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/polychromic/shortpants -- Didn't return an Initialize hint -Path : /obj/item/clothing/gloves/boxing/blue -- Didn't return an Initialize hint -Path : /obj/item/clothing/gloves/boxing/green -- Didn't return an Initialize hint -Path : /obj/item/clothing/gloves/boxing/yellow -- Didn't return an Initialize hint -Path : /obj/item/clothing/gloves/boxing -- Didn't return an Initialize hint -Path : /obj/item/clothing/mask/luchador -- Didn't return an Initialize hint -Path : /obj/item/clothing/mask/luchador/rudos -- Didn't return an Initialize hint -Path : /obj/item/clothing/mask/luchador/tecnicos -- Didn't return an Initialize hint -Path : /obj/item/clothing/suit/bluetag -- Didn't return an Initialize hint -Path : /obj/item/clothing/head/helmet/bluetaghelm -- Didn't return an Initialize hint -Path : /obj/item/clothing/suit/redtag -- Didn't return an Initialize hint -Path : /obj/item/clothing/head/helmet/redtaghelm -- Didn't return an Initialize hint -Path : /obj/item/clothing/gloves/color/white -- Didn't return an Initialize hint -Path : /obj/item/clothing/glasses/regular -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/rank/vice -- Didn't return an Initialize hint -Path : /obj/item/clothing/gloves/color/fyellow -- Didn't return an Initialize hint -Path : /obj/item/clothing/gloves/color/red -- Didn't return an Initialize hint -Path : /obj/item/clothing/shoes/kindleKicks -- Didn't return an Initialize hint -Path : /obj/item/clothing/mask/balaclava -- Didn't return an Initialize hint -Path : /obj/item/clothing/head/welding -- Didn't return an Initialize hint -Path : /obj/item/clothing/gloves/color/yellow -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/pj/red -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/pj/blue -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/rank/mailman -- Didn't return an Initialize hint -Path : /obj/item/clothing/head/mailman -- Didn't return an Initialize hint -Path : /obj/item/clothing/suit/space/eva -- Didn't return an Initialize hint -Path : /obj/item/clothing/head/helmet/space/eva -- Didn't return an Initialize hint -Path : /obj/item/clothing/head/bearpelt -- Didn't return an Initialize hint -Path : /obj/item/clothing/suit/bio_suit/scientist -- Didn't return an Initialize hint -Path : /obj/item/clothing/head/bio_hood/scientist -- Didn't return an Initialize hint -Path : /obj/structure/closet/secure_closet/freezer/cream_pie -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/burial -- Didn't return an Initialize hint -Path : /obj/item/clothing/mask/cigarette/space_cigarette -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/suit_jacket/red -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/skirt/color/green -- Didn't return an Initialize hint -Path : /obj/item/clothing/mask/bandana/green -- Didn't return an Initialize hint -Path : /obj/item/clothing/suit/hazardvest -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/color/grey -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/skirt/color/grey -- Didn't return an Initialize hint -Path : /obj/item/clothing/head/soft/grey -- Didn't return an Initialize hint -Path : /obj/item/clothing/mask/bandana/black -- Didn't return an Initialize hint -Path : /obj/item/clothing/head/hardhat -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/skirt/color/black -- Didn't return an Initialize hint -Path : /obj/item/clothing/suit/jacket/leather/overcoat -- Didn't return an Initialize hint -Path : /obj/item/clothing/head/that -- Didn't return an Initialize hint -Path : /obj/item/clothing/head/soft/black -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/rank/det -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/rank/det/skirt -- Didn't return an Initialize hint -Path : /obj/item/clothing/suit/det_suit -- Didn't return an Initialize hint -Path : /obj/item/clothing/head/fedora/det_hat -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/rank/det/grey -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/rank/det/grey/skirt -- Didn't return an Initialize hint -Path : /obj/item/clothing/suit/det_suit/grey -- Didn't return an Initialize hint -Path : /obj/item/clothing/head/fedora -- Didn't return an Initialize hint -Path : /obj/item/clothing/suit/armor/vest/det_suit -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/suit_jacket/female -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/suit_jacket/really_black -- Didn't return an Initialize hint -Path : /obj/item/clothing/suit/ianshirt -- Didn't return an Initialize hint -Path : /obj/item/clothing/head/soft/rainbow -- Didn't return an Initialize hint -Path : /obj/item/clothing/shoes/sneakers/rainbow -- Didn't return an Initialize hint -Path : /obj/item/clothing/glasses/welding -- Didn't return an Initialize hint -Path : /obj/item/clothing/head/helmet/space/hardsuit/captain -- Didn't return an Initialize hint -Path : /obj/item/clothing/suit/space/hardsuit/captain -- Didn't return an Initialize hint -Path : /obj/item/clothing/glasses/science -- Didn't return an Initialize hint -Path : /obj/item/clothing/accessory/armband/medblue -- Didn't return an Initialize hint -Path : /obj/item/clothing/head/hooded/winterhood/captain -- Didn't return an Initialize hint -Path : /obj/item/clothing/suit/hooded/wintercoat/captain -- Didn't return an Initialize hint -Path : /obj/item/clothing/neck/cloak/cap -- Didn't return an Initialize hint -Path : /obj/item/clothing/neck/petcollar -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/rank/captain -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/rank/captain/skirt -- Didn't return an Initialize hint -Path : /obj/item/clothing/suit/armor/vest/capcarapace -- Didn't return an Initialize hint -Path : /obj/item/clothing/head/caphat -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/captainparade -- Didn't return an Initialize hint -Path : /obj/item/clothing/suit/armor/vest/capcarapace/alt -- Didn't return an Initialize hint -Path : /obj/item/clothing/head/caphat/parade -- Didn't return an Initialize hint -Path : /obj/item/clothing/head/caphat/beret -- Didn't return an Initialize hint -Path : /obj/item/clothing/suit/captunic -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/rank/captain/femformal -- Didn't return an Initialize hint -Path : /obj/item/clothing/glasses/sunglasses/gar/supergar -- Didn't return an Initialize hint -Path : /obj/item/clothing/gloves/color/captain -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/rank/chemist -- Didn't return an Initialize hint -Path : /obj/item/clothing/suit/toggle/labcoat/chemist -- Didn't return an Initialize hint -Path : /obj/item/clothing/neck/stethoscope -- Didn't return an Initialize hint -Path : /obj/item/clothing/neck/cloak/hop -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/rank/head_of_personnel -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/rank/head_of_personnel/skirt -- Didn't return an Initialize hint -Path : /obj/item/clothing/head/hopcap -- Didn't return an Initialize hint -Path : /obj/item/clothing/head/hopcap/beret -- Didn't return an Initialize hint -Path : /obj/item/clothing/suit/armor/vest/alt -- Didn't return an Initialize hint -Path : /obj/item/clothing/head/hooded/winterhood/hop -- Didn't return an Initialize hint -Path : /obj/item/clothing/suit/hooded/wintercoat/hop -- Didn't return an Initialize hint -Path : /obj/item/clothing/suit/radiation -- Didn't return an Initialize hint -Path : /obj/item/clothing/head/radiation -- Didn't return an Initialize hint -Path : /obj/item/clothing/mask/facehugger/lamarr -- Didn't return an Initialize hint -Path : /obj/item/clothing/accessory/armband/science -- Didn't return an Initialize hint -Path : /obj/item/clothing/accessory/armband/cargo -- Didn't return an Initialize hint -Path : /obj/item/clothing/head/helmet/space/hardsuit/medical -- Didn't return an Initialize hint -Path : /obj/item/clothing/suit/space/hardsuit/medical -- Didn't return an Initialize hint -Path : /obj/item/clothing/neck/cloak/rd -- Didn't return an Initialize hint -Path : /obj/item/clothing/head/beret/rd -- Didn't return an Initialize hint -Path : /obj/item/clothing/suit/toggle/labcoat -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/rank/research_director -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/rank/research_director/skirt -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/rank/research_director/alt -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/rank/research_director/alt/skirt -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/rank/research_director/turtleneck -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/rank/research_director/turtleneck/skirt -- Didn't return an Initialize hint -Path : /obj/item/clothing/suit/armor/reactive/teleport -- Didn't return an Initialize hint -Path : /obj/item/clothing/head/hooded/winterhood/rd -- Didn't return an Initialize hint -Path : /obj/item/clothing/suit/hooded/wintercoat/rd -- Didn't return an Initialize hint -Path : /obj/item/clothing/head/helmet/space/hardsuit/rd -- Didn't return an Initialize hint -Path : /obj/item/clothing/suit/space/hardsuit/rd -- Didn't return an Initialize hint -Path : /obj/item/clothing/suit/bio_suit/general -- Didn't return an Initialize hint -Path : /obj/item/clothing/head/bio_hood/general -- Didn't return an Initialize hint -Path : /obj/item/clothing/glasses/hud/health -- Didn't return an Initialize hint -Path : /obj/item/clothing/accessory/medal/greytide -- Didn't return an Initialize hint -Path : /obj/item/clothing/suit/bio_suit/janitor -- Didn't return an Initialize hint -Path : /obj/item/clothing/head/bio_hood/janitor -- Didn't return an Initialize hint -Path : /obj/item/clothing/mask/muzzle -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/rank/miner/lavaland -- Didn't return an Initialize hint -Path : /obj/item/clothing/shoes/workboots/mining -- Didn't return an Initialize hint -Path : /obj/item/clothing/head/hooded/winterhood/miner -- Didn't return an Initialize hint -Path : /obj/item/clothing/suit/hooded/wintercoat/miner -- Didn't return an Initialize hint -Path : /obj/item/clothing/mask/breath/medical -- Didn't return an Initialize hint -Path : /obj/item/clothing/neck/cloak/cmo -- Didn't return an Initialize hint -Path : /obj/item/clothing/head/beret/cmo -- Didn't return an Initialize hint -Path : /obj/item/clothing/suit/bio_suit/cmo -- Didn't return an Initialize hint -Path : /obj/item/clothing/head/bio_hood/cmo -- Didn't return an Initialize hint -Path : /obj/item/clothing/suit/toggle/labcoat/cmo -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/rank/chief_medical_officer -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/rank/chief_medical_officer/skirt -- Didn't return an Initialize hint -Path : /obj/item/clothing/accessory/medal/ribbon/medical_doctor -- Didn't return an Initialize hint -Path : /obj/item/clothing/head/hooded/winterhood/cmo -- Didn't return an Initialize hint -Path : /obj/item/clothing/suit/hooded/wintercoat/cmo -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/rank/chief_medical_officer/turtleneck -- Didn't return an Initialize hint -Path : /obj/item/clothing/accessory/armband/engine -- Didn't return an Initialize hint -Path : /obj/item/clothing/suit/fire/atmos -- Didn't return an Initialize hint -Path : /obj/item/clothing/head/hardhat/atmos -- Didn't return an Initialize hint -Path : /obj/item/clothing/glasses/meson/engine/tray -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/color/lightpurple -- Didn't return an Initialize hint -Path : /obj/item/clothing/head/helmet/space/hardsuit/engine/atmos -- Didn't return an Initialize hint -Path : /obj/item/clothing/suit/space/hardsuit/engine/atmos -- Didn't return an Initialize hint -Path : /obj/item/clothing/suit/bio_suit/virology -- Didn't return an Initialize hint -Path : /obj/item/clothing/head/bio_hood/virology -- Didn't return an Initialize hint -Path : /obj/structure/closet/secure_closet/freezer/kitchen/maintenance -- Didn't return an Initialize hint -Path : /obj/item/clothing/shoes/winterboots -- Didn't return an Initialize hint -Path : /obj/item/clothing/suit/hooded/wintercoat -- Didn't return an Initialize hint -Path : /obj/item/clothing/head/hooded/winterhood -- Didn't return an Initialize hint -Path : /obj/item/clothing/head/kitty -- Didn't return an Initialize hint -Path : /obj/item/clothing/accessory/maidapron -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/maid -- Didn't return an Initialize hint -Path : /obj/item/clothing/mask/bandana/skull -- Didn't return an Initialize hint -Path : /obj/item/clothing/head/helmet/space/hardsuit/engine/elite -- Didn't return an Initialize hint -Path : /obj/item/clothing/suit/space/hardsuit/engine/elite -- Didn't return an Initialize hint -Path : /obj/item/clothing/shoes/magboots/advance -- Didn't return an Initialize hint -Path : /obj/item/clothing/neck/cloak/ce -- Didn't return an Initialize hint -Path : /obj/item/clothing/head/beret/ce -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/rank/chief_engineer -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/rank/chief_engineer/skirt -- Didn't return an Initialize hint -Path : /obj/item/clothing/head/hardhat/white -- Didn't return an Initialize hint -Path : /obj/item/clothing/glasses/meson/engine -- Didn't return an Initialize hint -Path : /obj/item/clothing/accessory/medal/engineer -- Didn't return an Initialize hint -Path : /obj/item/clothing/head/hooded/winterhood/ce -- Didn't return an Initialize hint -Path : /obj/item/clothing/suit/hooded/wintercoat/ce -- Didn't return an Initialize hint -Path : /obj/item/clothing/head/helmet/space/hardsuit/engine -- Didn't return an Initialize hint -Path : /obj/item/clothing/suit/space/hardsuit/engine -- Didn't return an Initialize hint -Path : /obj/item/clothing/accessory/pocketprotector -- Didn't return an Initialize hint -Path : /obj/item/clothing/head/hooded/winterhood/engineering -- Didn't return an Initialize hint -Path : /obj/item/clothing/suit/hooded/wintercoat/engineering -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/rank/engineer -- Didn't return an Initialize hint -Path : /obj/item/clothing/shoes/workboots -- Didn't return an Initialize hint -Path : /obj/item/clothing/head/hooded/explorer -- Didn't return an Initialize hint -Path : /obj/item/clothing/suit/hooded/explorer/standard -- Didn't return an Initialize hint -Path : /obj/item/clothing/mask/gas/explorer -- Didn't return an Initialize hint -Path : /obj/item/clothing/head/helmet/space/orange -- Didn't return an Initialize hint -Path : /obj/item/clothing/suit/space/orange -- Didn't return an Initialize hint -Path : /obj/item/clothing/head/helmet/roman/legionnaire -- Didn't return an Initialize hint -Path : /obj/item/clothing/mask/cigarette/dromedary -- Didn't return an Initialize hint -Path : /obj/item/clothing/gloves/color/fyellow/old -- Didn't return an Initialize hint -Path : /obj/item/clothing/head/helmet/space/nasavoid/old -- Didn't return an Initialize hint -Path : /obj/item/clothing/suit/space/nasavoid/old -- Didn't return an Initialize hint -Path : /obj/item/clothing/suit/armor/vest/old -- Didn't return an Initialize hint -Path : /obj/item/clothing/head/helmet/old -- Didn't return an Initialize hint -Path : /obj/item/clothing/head/helmet/space/hardsuit/ancient -- Didn't return an Initialize hint -Path : /obj/item/clothing/suit/space/hardsuit/ancient -- Didn't return an Initialize hint -Path : /obj/item/clothing/head/cone -- Didn't return an Initialize hint -Path : /obj/item/clothing/head/papersack/smiley -- Didn't return an Initialize hint -Path : /obj/item/clothing/head/helmet/justice -- Didn't return an Initialize hint -Path : /obj/item/clothing/head/sombrero -- Didn't return an Initialize hint -Path : /obj/structure/closet/secure_closet/freezer/kitchen/mining -- Didn't return an Initialize hint -Path : /obj/item/clothing/head/collectable/kitty -- Didn't return an Initialize hint -Path : /obj/item/clothing/head/rice_hat -- Didn't return an Initialize hint -Path : /obj/item/clothing/shoes/sandal -- Didn't return an Initialize hint -Path : /obj/item/clothing/shoes/combat -- Didn't return an Initialize hint -Path : /obj/item/clothing/head/helmet/space/hardsuit/mining -- Didn't return an Initialize hint -Path : /obj/item/clothing/suit/space/hardsuit/mining -- Didn't return an Initialize hint -Path : /obj/item/clothing/mask/gas/syndicate -- Didn't return an Initialize hint -Path : /obj/item/clothing/head/helmet/space/hardsuit/syndi -- Didn't return an Initialize hint -Path : /obj/item/clothing/suit/space/hardsuit/syndi -- Didn't return an Initialize hint -Path : /obj/item/clothing/suit/space/syndicate/orange -- Didn't return an Initialize hint -Path : /obj/item/clothing/head/helmet/space/syndicate/orange -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/soviet -- Didn't return an Initialize hint -Path : /obj/item/clothing/head/ushanka -- Didn't return an Initialize hint -Path : /obj/item/clothing/glasses/sunglasses/big -- Didn't return an Initialize hint -Path : /obj/item/clothing/under/color/maroon -- Didn't return an Initialize hint -Path : /obj/item/integrated_circuit/passive/power/chemical_cell -- Didn't return an Initialize hint -Path : /obj/item/integrated_circuit/atmospherics/pump/volume -- Didn't return an Initialize hint -Path : /obj/item/integrated_circuit/atmospherics/pump/vent -- Didn't return an Initialize hint -Path : /obj/item/integrated_circuit/atmospherics/pump/filter -- Didn't return an Initialize hint -Path : /obj/item/integrated_circuit/atmospherics/pump/mixer -- Didn't return an Initialize hint -Path : /obj/item/integrated_circuit/atmospherics/pump -- Didn't return an Initialize hint -Path : /obj/item/integrated_circuit/atmospherics/connector -- Didn't return an Initialize hint -Path : /obj/item/integrated_circuit/atmospherics/tank/large -- Didn't return an Initialize hint -Path : /obj/item/integrated_circuit/atmospherics/tank/freezer/heater -- Didn't return an Initialize hint -Path : /obj/item/integrated_circuit/atmospherics/tank/freezer -- Didn't return an Initialize hint -Path : /obj/item/integrated_circuit/atmospherics/tank -- Didn't return an Initialize hint -Path : /obj/item/integrated_circuit/atmospherics/cooler/heater -- Didn't return an Initialize hint -Path : /obj/item/integrated_circuit/atmospherics/cooler -- Didn't return an Initialize hint -Path : /obj/item/integrated_circuit/atmospherics -- Didn't return an Initialize hint -Path : /obj/item/clothing/suit/space/syndicate -- Didn't return an Initialize hint -Path : /obj/item/clothing/head/helmet/space/syndicate -- Didn't return an Initialize hint - diff --git a/data/logs/2019/12/03/round-23.56.34/job_debug.log b/data/logs/2019/12/03/round-23.56.34/job_debug.log deleted file mode 100644 index 28f86363..00000000 --- a/data/logs/2019/12/03/round-23.56.34/job_debug.log +++ /dev/null @@ -1,2 +0,0 @@ -[2019-12-04 04:56:34.968] Starting up round ID . - - ------------------------- diff --git a/data/logs/2019/12/03/round-23.56.34/manifest.log b/data/logs/2019/12/03/round-23.56.34/manifest.log deleted file mode 100644 index 45c55a5a..00000000 --- a/data/logs/2019/12/03/round-23.56.34/manifest.log +++ /dev/null @@ -1,3 +0,0 @@ -[2019-12-04 04:56:34.965] Starting up round ID . - - ------------------------- -[2019-12-04 04:57:25.868] bigfatanimetiddies \ Alessandra Joghs \ Chief Medical Officer \ NONE \ ROUNDSTART diff --git a/data/logs/2019/12/03/round-23.56.34/newscaster.json b/data/logs/2019/12/03/round-23.56.34/newscaster.json deleted file mode 100644 index e0c60a4b..00000000 --- a/data/logs/2019/12/03/round-23.56.34/newscaster.json +++ /dev/null @@ -1 +0,0 @@ -{"1":{"channel name":"Station Announcements","author":"SS13","censored":0,"author censored":0,"messages":[{"author":"Central Command","time stamp":"12:23:50","censored":0,"author censored":0,"photo file":"","photo caption":"","body":"Security Report

Thanks to the tireless efforts of our security and intelligence divisions, there are currently no credible threats to Grey Festive Stopover Eighteen. All station construction projects have been authorized. Have a secure shift!","comments":[]},{"author":"Central Command","time stamp":"14:46:28","censored":0,"author censored":0,"photo file":"","photo caption":"","body":"Incoming Classified Message

A report has been downloaded and printed out at all communications consoles.","comments":[]}]}} diff --git a/data/logs/2019/12/03/round-23.56.34/overlay.log b/data/logs/2019/12/03/round-23.56.34/overlay.log deleted file mode 100644 index 12063d05..00000000 --- a/data/logs/2019/12/03/round-23.56.34/overlay.log +++ /dev/null @@ -1,684 +0,0 @@ -/turf/closed/mineral/random/volcanic => 136ms (29287) (avg:0.004643698688596487) -/turf/open/lava/smooth/lava_land_surface => 38ms (9145) (avg:0.0041552758775651455) -/turf/closed/wall => 26ms (3404) (avg:0.0076380730606615543) -/turf/closed/mineral/iron/volcanic => 23ms (3954) (avg:0.0058168941177427769) -/turf/closed/indestructible/riveted => 19ms (3785) (avg:0.0050198151730000973) -/turf/closed/indestructible/riveted/boss => 14ms (3129) (avg:0.0044742729514837265) -/turf/closed/mineral/random/labormineral/volcanic => 14ms (2334) (avg:0.0059982864186167717) -/turf/open/floor/plasteel => 12ms (3860) (avg:0.0031088083051145077) -/obj/structure/lattice => 10ms (1974) (avg:0.0050658560357987881) -/turf/closed/wall/r_wall => 10ms (1605) (avg:0.006230529397726059) -/turf/open/floor/plasteel/dark => 9ms (2377) (avg:0.0037862851750105619) -/obj/machinery/door/airlock/public/glass => 9ms (239) (avg:0.037656903266906738) -/mob/living/carbon/human => 9ms (99) (avg:0.090909093618392944) -/obj/effect/decal/cleanable/dirt => 7ms (2023) (avg:0.0034602077212184668) -/obj/structure/window/reinforced/fulltile => 7ms (1560) (avg:0.0044871796853840351) -/obj/structure/table/reinforced => 7ms (611) (avg:0.011456628330051899) -/obj/item/stock_parts/cell/emergency_light => 6ms (1057) (avg:0.0056764427572488785) -/turf/closed/mineral/titanium/volcanic => 6ms (452) (avg:0.013274336233735085) -/obj/machinery/light => 5ms (1144) (avg:0.0043706293217837811) -/obj/structure/table => 5ms (639) (avg:0.007824726402759552) -/obj/machinery/door/airlock/maintenance => 5ms (193) (avg:0.02590673603117466) -/turf/closed/mineral/silver/volcanic => 4ms (565) (avg:0.0070796459913253784) -/obj/machinery/clonepod/experimental => 4ms (452) (avg:0.008849557489156723) -/turf/closed/mineral/random/low_chance => 3ms (655) (avg:0.0045801526866853237) -/obj/item/gun/energy/pumpaction/toy => 3ms (452) (avg:0.0066371681168675423) -/obj/structure/lattice/catwalk => 3ms (435) (avg:0.0068965516984462738) -/turf/closed/wall/rust => 3ms (425) (avg:0.0070588234812021255) -/turf/closed/mineral => 3ms (371) (avg:0.0080862529575824738) -/obj/machinery/door/airlock/security/glass => 3ms (52) (avg:0.057692307978868484) -/obj/machinery/door/airlock/virology/glass => 3ms (38) (avg:0.078947365283966064) -/obj/machinery/door/airlock/hatch => 3ms (28) (avg:0.1071428582072258) -/obj/machinery/light/small => 2ms (575) (avg:0.0034782609436661005) -/obj/machinery/clonepod => 2ms (452) (avg:0.0044247787445783615) -/obj/structure/table/wood => 2ms (337) (avg:0.0059347180649638176) -/turf/closed/wall/mineral/titanium => 2ms (324) (avg:0.0061728395521640778) -/turf/open/floor/plasteel/white => 2ms (288) (avg:0.0069444444961845875) -/turf/closed/indestructible => 2ms (168) (avg:0.011904762126505375) -/obj/structure/window/fulltile => 2ms (153) (avg:0.013071895577013493) -/turf/closed/indestructible/riveted/uranium => 2ms (131) (avg:0.015267175622284412) -/turf/open/indestructible/hierophant/two => 2ms (113) (avg:0.017699114978313446) -/obj/structure/table/glass => 2ms (65) (avg:0.030769230797886848) -/obj/item/storage/belt/security/full => 2ms (19) (avg:0.10526315867900848) -/turf/open/floor/plasteel/dark/corner => 2ms (15) (avg:0.13333334028720856) -/turf/closed/mineral/plasma/volcanic => 1ms (997) (avg:0.0010030090343207121) -/turf/open/floor/carpet => 1ms (584) (avg:0.0017123287543654442) -/turf/closed/mineral/gold/volcanic => 1ms (448) (avg:0.0022321429569274187) -/obj/machinery/airalarm => 1ms (336) (avg:0.0029761905316263437) -/obj/machinery/power/solar => 1ms (323) (avg:0.0030959751456975937) -/turf/closed/wall/mineral/iron => 1ms (251) (avg:0.0039840638637542725) -/turf/closed/mineral/random/high_chance/volcanic => 1ms (245) (avg:0.0040816324763000011) -/turf/closed/mineral/uranium/volcanic => 1ms (211) (avg:0.0047393366694450378) -/obj/machinery/door/airlock/external => 1ms (200) (avg:0.004999999888241291) -/turf/closed/wall/mineral/titanium/nodiagonal => 1ms (194) (avg:0.0051546390168368816) -/obj/machinery/atmospherics/pipe/manifold/supply/hidden => 1ms (192) (avg:0.0052083334885537624) -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden => 1ms (156) (avg:0.0064102564938366413) -/turf/open/floor/holofloor => 1ms (156) (avg:0.0064102564938366413) -/obj/machinery/door/airlock => 1ms (138) (avg:0.0072463769465684891) -/turf/closed/wall/mineral/plastitanium => 1ms (118) (avg:0.0084745762869715691) -/obj/machinery/disposal/bin => 1ms (98) (avg:0.010204081423580647) -/turf/closed/indestructible/riveted/hierophant => 1ms (88) (avg:0.011363636702299118) -/obj/machinery/atmospherics/components/binary/passive_gate => 1ms (81) (avg:0.012345679104328156) -/obj/structure/closet => 1ms (70) (avg:0.014285714365541935) -/obj/structure/window/shuttle => 1ms (59) (avg:0.016949152573943138) -/obj/machinery/newscaster/security_unit => 1ms (52) (avg:0.019230769947171211) -/turf/closed/wall/r_wall/rust => 1ms (49) (avg:0.020408162847161293) -/obj/machinery/door/airlock/shuttle => 1ms (44) (avg:0.022727273404598236) -/turf/closed/wall/mineral/cult => 1ms (41) (avg:0.024390242993831635) -/obj/machinery/power/solar/fake => 1ms (36) (avg:0.02777777798473835) -/obj/machinery/door/airlock/engineering => 1ms (34) (avg:0.029411764815449715) -/obj/machinery/power/smes/engineering => 1ms (31) (avg:0.032258063554763794) -/obj/item/gun/energy/laser => 1ms (27) (avg:0.037037037312984467) -/obj/machinery/door/airlock/engineering/glass => 1ms (24) (avg:0.041666667908430099) -/obj/structure/table/wood/fancy => 1ms (21) (avg:0.0476190485060215) -/obj/item/clothing/under/polychromic/shirt => 1ms (18) (avg:0.0555555559694767) -/mob/living/simple_animal/slime => 1ms (18) (avg:0.0555555559694767) -/turf/closed/mineral/uranium => 1ms (12) (avg:0.083333335816860199) -/obj/item/reagent_containers/blood/OMinus => 1ms (10) (avg:0.10000000149011612) -/obj/item/dice/d4 => 1ms (7) (avg:0.1428571492433548) -/obj/machinery/door/airlock/vault => 1ms (4) (avg:0.25) -/obj/structure/door_assembly/door_assembly_mai => 1ms (2) (avg:0.5) -/obj/item/bodypart/r_arm => 1ms (2) (avg:0.5) -/obj/item/bodypart/l_leg => 1ms (2) (avg:0.5) -/mob/living/carbon/monkey/punpun => 1ms (1) (avg:1) -/obj/structure/closet/wardrobe/chemistry_white => 1ms (1) (avg:1) -/obj/machinery/door/airlock/survival_pod/glass => 1ms (1) (avg:1) -/obj/machinery/door/airlock/glass_large => 1ms (1) (avg:1) -/obj/structure/closet/secure_closet/miner/unlocked => 1ms (1) (avg:1) -/turf/open/indestructible/hierophant => 0ms (328) (avg:0) -/obj/machinery/firealarm => 0ms (283) (avg:0) -/turf/closed/mineral/volcanic/lava_land_surface => 0ms (225) (avg:0) -/turf/open/space => 0ms (204) (avg:0) -/turf/open/floor/plating => 0ms (202) (avg:0) -/obj/machinery/newscaster => 0ms (152) (avg:0) -/obj/machinery/door/airlock/centcom => 0ms (147) (avg:0) -/obj/item/stock_parts/cell/upgraded => 0ms (139) (avg:0) -/obj/item/stock_parts/cell/high/empty => 0ms (135) (avg:0) -/turf/closed/mineral/random/high_chance => 0ms (126) (avg:0) -/turf/closed/mineral/random => 0ms (118) (avg:0) -/turf/closed/mineral/gibtonite/volcanic => 0ms (117) (avg:0) -/obj/machinery/power/solar_control => 0ms (104) (avg:0) -/turf/open/floor/engine => 0ms (97) (avg:0) -/obj/item/stock_parts/cell => 0ms (96) (avg:0) -/obj/item/stock_parts/cell/high => 0ms (90) (avg:0) -/turf/closed/indestructible/fakeglass => 0ms (90) (avg:0) -/obj/item/screwdriver => 0ms (87) (avg:0) -/turf/open/floor/carpet/royalblue => 0ms (81) (avg:0) -/obj/item/wirecutters => 0ms (74) (avg:0) -/obj/structure/closet/emcloset => 0ms (66) (avg:0) -/obj/item/paper_bin => 0ms (65) (avg:0) -/turf/closed/mineral/iron => 0ms (65) (avg:0) -/turf/open/floor/plasteel/white/corner => 0ms (63) (avg:0) -/obj/machinery/door/airlock/titanium => 0ms (60) (avg:0) -/obj/item/weldingtool => 0ms (57) (avg:0) -/obj/item/reagent_containers/glass/beaker/large => 0ms (56) (avg:0) -/turf/closed/wall/mineral/titanium/survival/pod => 0ms (56) (avg:0) -/obj/item/reagent_containers/syringe/charcoal => 0ms (55) (avg:0) -/turf/closed/mineral/diamond/volcanic => 0ms (52) (avg:0) -/obj/machinery/door/airlock/highsecurity => 0ms (49) (avg:0) -/turf/open/floor/carpet/black => 0ms (48) (avg:0) -/obj/machinery/door/airlock/maintenance/abandoned => 0ms (47) (avg:0) -/turf/open/floor/plasteel/cafeteria => 0ms (45) (avg:0) -/turf/closed/mineral/bscrystal/volcanic => 0ms (45) (avg:0) -/obj/machinery/door/airlock/command/glass => 0ms (44) (avg:0) -/obj/machinery/atmospherics/pipe/manifold/general/visible => 0ms (41) (avg:0) -/obj/item/reagent_containers/glass/beaker => 0ms (40) (avg:0) -/turf/closed/mineral/ash_rock => 0ms (40) (avg:0) -/obj/item/clipboard => 0ms (38) (avg:0) -/turf/open/floor/plating/airless => 0ms (38) (avg:0) -/turf/open/space/basic => 0ms (38) (avg:0) -/turf/open/floor/mineral/plastitanium/red => 0ms (37) (avg:0) -/obj/item/reagent_containers/glass/beaker/waterbottle/large => 0ms (37) (avg:0) -/obj/machinery/door/airlock/research => 0ms (36) (avg:0) -/obj/structure/window/plasma/reinforced/fulltile => 0ms (36) (avg:0) -/obj/item/storage/toolbox/emergency => 0ms (35) (avg:0) -/obj/item/storage/toolbox/mechanical => 0ms (35) (avg:0) -/obj/machinery/door/airlock/medical/glass => 0ms (35) (avg:0) -/obj/machinery/door/airlock/maintenance_hatch => 0ms (35) (avg:0) -/obj/structure/transit_tube => 0ms (34) (avg:0) -/obj/structure/closet/secure_closet/personal => 0ms (34) (avg:0) -/obj/machinery/door/airlock/mining/glass => 0ms (34) (avg:0) -/obj/machinery/computer/secure_data => 0ms (33) (avg:0) -/obj/machinery/door/airlock/command => 0ms (32) (avg:0) -/turf/closed/mineral/plasma => 0ms (31) (avg:0) -/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden => 0ms (30) (avg:0) -/obj/machinery/airalarm/all_access => 0ms (30) (avg:0) -/turf/open/floor/plasteel/airless => 0ms (29) (avg:0) -/obj/machinery/computer => 0ms (28) (avg:0) -/obj/structure/window/paperframe => 0ms (27) (avg:0) -/obj/screen/healthdoll => 0ms (27) (avg:0) -/turf/open/floor/circuit/green/off => 0ms (26) (avg:0) -/obj/item/reagent_containers/glass/bottle/epinephrine => 0ms (25) (avg:0) -/obj/item/stock_parts/cell/upgraded/plus => 0ms (25) (avg:0) -/obj/machinery/power/smes => 0ms (25) (avg:0) -/obj/machinery/door/airlock/security => 0ms (24) (avg:0) -/obj/item/reagent_containers/blood/random => 0ms (23) (avg:0) -/obj/item/reagent_containers/glass/bottle/charcoal => 0ms (22) (avg:0) -/obj/structure/closet/crate/bin => 0ms (21) (avg:0) -/obj/item/disk/plantgene => 0ms (21) (avg:0) -/obj/item/clothing/under/polychromic/shortpants => 0ms (21) (avg:0) -/turf/closed/wall/mineral/wood => 0ms (21) (avg:0) -/obj/machinery/portable_atmospherics/canister/air => 0ms (20) (avg:0) -/obj/machinery/portable_atmospherics/canister/oxygen => 0ms (20) (avg:0) -/obj/item/stock_parts/cell/high/plus => 0ms (20) (avg:0) -/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden => 0ms (18) (avg:0) -/obj/machinery/computer/security => 0ms (18) (avg:0) -/obj/item/clothing/under/polychromic/jumpsuit => 0ms (18) (avg:0) -/obj/item/clothing/under/polychromic/kilt => 0ms (18) (avg:0) -/obj/item/clothing/under/polychromic/skirt => 0ms (18) (avg:0) -/obj/item/clothing/under/polychromic/shorts => 0ms (18) (avg:0) -/obj/machinery/door/airlock/science => 0ms (18) (avg:0) -/turf/closed/mineral/silver => 0ms (18) (avg:0) -/obj/structure/closet/cardboard => 0ms (16) (avg:0) -/obj/machinery/airalarm/unlocked => 0ms (16) (avg:0) -/turf/open/floor/plasteel/airless/dark => 0ms (16) (avg:0) -/obj/structure/table/abductor => 0ms (16) (avg:0) -/turf/open/floor/holofloor/carpet => 0ms (16) (avg:0) -/obj/item/storage/toolbox/electrical => 0ms (15) (avg:0) -/obj/machinery/atmospherics/pipe/manifold/cyan/visible => 0ms (15) (avg:0) -/turf/closed/mineral/gold => 0ms (15) (avg:0) -/obj/structure/window/plastitanium => 0ms (15) (avg:0) -/obj/structure/transit_tube/horizontal => 0ms (14) (avg:0) -/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden => 0ms (14) (avg:0) -/obj/item/storage/box/handcuffs => 0ms (14) (avg:0) -/obj/item/storage/box/syringes => 0ms (14) (avg:0) -/obj/machinery/door/airlock/medical => 0ms (14) (avg:0) -/obj/machinery/computer/med_data => 0ms (13) (avg:0) -/obj/item/storage/box/lights/mixed => 0ms (13) (avg:0) -/obj/item/reagent_containers/glass/bottle/morphine => 0ms (13) (avg:0) -/obj/machinery/door/airlock/research/glass => 0ms (13) (avg:0) -/obj/screen/inventory/hand => 0ms (13) (avg:0) -/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible => 0ms (12) (avg:0) -/obj/item/lighter => 0ms (12) (avg:0) -/obj/item/gun/ballistic/automatic/wt550 => 0ms (12) (avg:0) -/obj/machinery/computer/shuttle/mining => 0ms (12) (avg:0) -/turf/open/floor/circuit/red => 0ms (12) (avg:0) -/turf/open/floor/circuit => 0ms (12) (avg:0) -/turf/open/floor/plasteel/showroomfloor => 0ms (12) (avg:0) -/obj/structure/closet/firecloset => 0ms (12) (avg:0) -/turf/open/floor/plasteel/freezer => 0ms (12) (avg:0) -/obj/item/gun/energy/e_gun/turret => 0ms (12) (avg:0) -/obj/machinery/atmospherics/pipe/manifold4w/scrubbers => 0ms (12) (avg:0) -/turf/closed/wall/mineral/titanium/interior => 0ms (12) (avg:0) -/turf/closed/mineral/titanium => 0ms (12) (avg:0) -/turf/closed/indestructible/riveted/boss/see_through => 0ms (12) (avg:0) -/obj/machinery/portable_atmospherics/canister/nitrous_oxide => 0ms (11) (avg:0) -/mob/living/carbon/monkey => 0ms (11) (avg:0) -/obj/machinery/computer/crew => 0ms (11) (avg:0) -/obj/structure/closet/secure_closet/security => 0ms (11) (avg:0) -/obj/machinery/computer/communications => 0ms (11) (avg:0) -/obj/item/gun/energy/e_gun => 0ms (11) (avg:0) -/obj/machinery/computer/station_alert => 0ms (11) (avg:0) -/obj/item/storage/crayons => 0ms (10) (avg:0) -/obj/machinery/computer/cargo => 0ms (10) (avg:0) -/obj/machinery/door/airlock/atmos/abandoned => 0ms (10) (avg:0) -/obj/item/storage/box/rxglasses => 0ms (10) (avg:0) -/obj/item/storage/box/emptysandbags => 0ms (10) (avg:0) -/obj/machinery/door/airlock/atmos => 0ms (10) (avg:0) -/obj/machinery/door/airlock/grunge => 0ms (10) (avg:0) -/obj/machinery/atmospherics/components/unary/vent_scrubber/on => 0ms (10) (avg:0) -/obj/machinery/atmospherics/components/unary/vent_pump/on => 0ms (10) (avg:0) -/obj/item/gun/energy/beam_rifle/debug => 0ms (10) (avg:0) -/obj/item/gps/internal => 0ms (9) (avg:0) -/obj/item/dice/d20 => 0ms (9) (avg:0) -/obj/machinery/computer/mech_bay_power_console => 0ms (9) (avg:0) -/obj/machinery/computer/prisoner => 0ms (9) (avg:0) -/obj/machinery/computer/security/mining => 0ms (9) (avg:0) -/obj/item/storage/box/beakers => 0ms (9) (avg:0) -/obj/item/stack/ore/bluespace_crystal/artificial => 0ms (9) (avg:0) -/turf/open/lava/smooth => 0ms (9) (avg:0) -/obj/machinery/portable_atmospherics/canister/toxins => 0ms (8) (avg:0) -/obj/structure/closet/abductor => 0ms (8) (avg:0) -/obj/machinery/door/airlock/wood => 0ms (8) (avg:0) -/obj/item/storage/box/mousetraps => 0ms (8) (avg:0) -/obj/item/storage/box/flashbangs => 0ms (8) (avg:0) -/obj/machinery/computer/card/centcom => 0ms (8) (avg:0) -/obj/item/reagent_containers/syringe/epinephrine => 0ms (8) (avg:0) -/obj/machinery/computer/shuttle/labor => 0ms (8) (avg:0) -/obj/machinery/computer/atmos_alert => 0ms (8) (avg:0) -/obj/item/storage/box/bodybags => 0ms (8) (avg:0) -/obj/structure/closet/radiation => 0ms (8) (avg:0) -/obj/machinery/door/airlock/external/glass => 0ms (8) (avg:0) -/obj/structure/transit_tube/crossing/horizontal => 0ms (7) (avg:0) -/obj/item/storage/box/drinkingglasses => 0ms (7) (avg:0) -/obj/item/defibrillator/loaded => 0ms (7) (avg:0) -/obj/structure/closet/secure_closet/freezer/meat => 0ms (7) (avg:0) -/obj/structure/closet/secure_closet/freezer/fridge => 0ms (7) (avg:0) -/obj/machinery/computer/operating => 0ms (7) (avg:0) -/obj/item/dice/d6 => 0ms (7) (avg:0) -/obj/item/dice/d10 => 0ms (7) (avg:0) -/obj/structure/closet/secure_closet/brig => 0ms (7) (avg:0) -/obj/structure/closet/toolcloset => 0ms (7) (avg:0) -/obj/machinery/door/airlock/engineering/abandoned => 0ms (7) (avg:0) -/obj/structure/closet/athletic_mixed => 0ms (7) (avg:0) -/obj/item/disk/data => 0ms (7) (avg:0) -/obj/item/stock_parts/cell/emproof => 0ms (7) (avg:0) -/obj/item/gun/energy/kinetic_accelerator => 0ms (7) (avg:0) -/obj/machinery/atmospherics/pipe/manifold/yellow/visible => 0ms (7) (avg:0) -/turf/closed/mineral/diamond => 0ms (7) (avg:0) -/obj/item/storage/box/matches => 0ms (6) (avg:0) -/obj/structure/closet/secure_closet/freezer/kitchen => 0ms (6) (avg:0) -/obj/item/storage/box/ids => 0ms (6) (avg:0) -/obj/structure/closet/syndicate/personal => 0ms (6) (avg:0) -/obj/item/dice/d8 => 0ms (6) (avg:0) -/obj/item/dice/d12 => 0ms (6) (avg:0) -/obj/machinery/computer/cryopod => 0ms (6) (avg:0) -/obj/structure/closet/secure_closet/security/sec => 0ms (6) (avg:0) -/obj/structure/closet/wardrobe/mixed => 0ms (6) (avg:0) -/obj/item/storage/box/pillbottles => 0ms (6) (avg:0) -/obj/item/storage/box/medsprays => 0ms (6) (avg:0) -/obj/item/reagent_containers/glass/bottle/toxin => 0ms (6) (avg:0) -/obj/machinery/computer/monitor => 0ms (6) (avg:0) -/obj/machinery/computer/card => 0ms (6) (avg:0) -/obj/structure/closet/l3closet/scientist => 0ms (6) (avg:0) -/obj/structure/tank_dispenser/oxygen => 0ms (6) (avg:0) -/obj/machinery/computer/bounty => 0ms (6) (avg:0) -/obj/machinery/computer/teleporter => 0ms (6) (avg:0) -/obj/structure/closet/secure_closet/miner => 0ms (6) (avg:0) -/obj/machinery/door/airlock/virology => 0ms (6) (avg:0) -/obj/item/reagent_containers/syringe/antiviral => 0ms (6) (avg:0) -/obj/machinery/atmospherics/components/unary/outlet_injector/on => 0ms (6) (avg:0) -/obj/machinery/portable_atmospherics/canister/carbon_dioxide => 0ms (5) (avg:0) -/obj/machinery/portable_atmospherics/canister/nitrogen => 0ms (5) (avg:0) -/obj/structure/transit_tube/station/reverse/flipped => 0ms (5) (avg:0) -/obj/item/clothing/head/helmet/space/plasmaman => 0ms (5) (avg:0) -/obj/machinery/gibber => 0ms (5) (avg:0) -/obj/machinery/computer/telecrystals/uplinker => 0ms (5) (avg:0) -/obj/item/paicard => 0ms (5) (avg:0) -/obj/machinery/computer/med_data/laptop => 0ms (5) (avg:0) -/obj/item/gps/mining => 0ms (5) (avg:0) -/obj/item/storage/toolbox/drone => 0ms (5) (avg:0) -/obj/item/reagent_containers/syringe/lethal/execution => 0ms (5) (avg:0) -/obj/structure/closet/secure_closet/medical1 => 0ms (5) (avg:0) -/obj/item/pda => 0ms (5) (avg:0) -/obj/item/storage/box => 0ms (5) (avg:0) -/obj/structure/closet/secure_closet/personal/patient => 0ms (5) (avg:0) -/obj/structure/closet/l3closet => 0ms (5) (avg:0) -/obj/machinery/atmospherics/pipe/manifold/supply/visible => 0ms (5) (avg:0) -/obj/machinery/atmospherics/components/trinary/filter/flipped/critical => 0ms (5) (avg:0) -/obj/structure/table/wood/poker => 0ms (5) (avg:0) -/turf/open/floor/mineral/plastitanium => 0ms (5) (avg:0) -/obj/screen/movable/action_button => 0ms (5) (avg:0) -/obj/screen/inventory => 0ms (5) (avg:0) -/obj/item/storage/box/alienhandcuffs => 0ms (4) (avg:0) -/obj/machinery/computer/camera_advanced/abductor => 0ms (4) (avg:0) -/obj/machinery/door/airlock/silver => 0ms (4) (avg:0) -/obj/item/storage/box/silver_ids => 0ms (4) (avg:0) -/obj/item/storage/box/teargas => 0ms (4) (avg:0) -/obj/item/storage/box/zipties => 0ms (4) (avg:0) -/obj/machinery/computer/emergency_shuttle => 0ms (4) (avg:0) -/obj/machinery/computer/auxillary_base => 0ms (4) (avg:0) -/obj/machinery/power/smes/magical => 0ms (4) (avg:0) -/obj/machinery/modular_computer/console/preset/command => 0ms (4) (avg:0) -/obj/item/gun/energy/laser/practice => 0ms (4) (avg:0) -/obj/structure/closet/wardrobe/white => 0ms (4) (avg:0) -/obj/structure/closet/wardrobe/pjs => 0ms (4) (avg:0) -/obj/machinery/modular_computer/console/preset/engineering => 0ms (4) (avg:0) -/obj/machinery/computer/cargo/request => 0ms (4) (avg:0) -/obj/structure/closet/wardrobe/black => 0ms (4) (avg:0) -/obj/machinery/computer/rdconsole/core => 0ms (4) (avg:0) -/obj/machinery/computer/scan_consolenew => 0ms (4) (avg:0) -/obj/item/reagent_containers/glass/beaker/cryoxadone => 0ms (4) (avg:0) -/obj/machinery/atmospherics/components/unary/cryo_cell => 0ms (4) (avg:0) -/obj/machinery/door/airlock/mining => 0ms (4) (avg:0) -/turf/open/floor/plasteel/checker => 0ms (4) (avg:0) -/obj/machinery/computer/atmos_control => 0ms (4) (avg:0) -/obj/machinery/computer/camera_advanced/xenobio => 0ms (4) (avg:0) -/obj/machinery/door/airlock/atmos/glass => 0ms (4) (avg:0) -/obj/item/weldingtool/largetank => 0ms (4) (avg:0) -/obj/machinery/computer/atmos_control/tank => 0ms (4) (avg:0) -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos => 0ms (4) (avg:0) -/obj/item/gps/internal/dragon => 0ms (4) (avg:0) -/obj/machinery/atmospherics/pipe/manifold/green/visible => 0ms (4) (avg:0) -/turf/closed/wall/mineral/plastitanium/nodiagonal => 0ms (4) (avg:0) -/obj/screen/movable/action_button/hide_toggle => 0ms (3) (avg:0) -/obj/structure/transit_tube/station/reverse => 0ms (3) (avg:0) -/obj/machinery/computer/shuttle => 0ms (3) (avg:0) -/obj/item/reagent_containers/blood/AMinus => 0ms (3) (avg:0) -/obj/item/reagent_containers/blood/BMinus => 0ms (3) (avg:0) -/obj/item/reagent_containers/blood/BPlus => 0ms (3) (avg:0) -/obj/item/reagent_containers/blood/OPlus => 0ms (3) (avg:0) -/obj/item/reagent_containers/blood/lizard => 0ms (3) (avg:0) -/obj/structure/closet/secure_closet/hydroponics => 0ms (3) (avg:0) -/obj/item/storage/box/disks_plantgene => 0ms (3) (avg:0) -/obj/item/stock_parts/cell/infinite => 0ms (3) (avg:0) -/obj/item/storage/box/emps => 0ms (3) (avg:0) -/obj/item/gun/energy/ionrifle => 0ms (3) (avg:0) -/obj/machinery/modular_computer/console/preset/research => 0ms (3) (avg:0) -/obj/item/gps/internal/base => 0ms (3) (avg:0) -/obj/structure/closet/secure_closet/personal/cabinet => 0ms (3) (avg:0) -/obj/machinery/computer/arcade/orion_trail/kobayashi => 0ms (3) (avg:0) -/obj/item/storage/box/firingpins => 0ms (3) (avg:0) -/obj/item/gun/energy/e_gun/advtaser => 0ms (3) (avg:0) -/obj/item/gun/energy/laser/bluetag => 0ms (3) (avg:0) -/obj/item/gun/energy/laser/redtag => 0ms (3) (avg:0) -/obj/structure/closet/secure_closet/chemical => 0ms (3) (avg:0) -/obj/item/storage/toolbox/artistic => 0ms (3) (avg:0) -/obj/structure/closet/wardrobe/grey => 0ms (3) (avg:0) -/obj/item/clothing/neck/petcollar => 0ms (3) (avg:0) -/obj/structure/closet/bombcloset => 0ms (3) (avg:0) -/obj/structure/tank_dispenser => 0ms (3) (avg:0) -/obj/item/reagent_containers/glass/bottle/mutagen => 0ms (3) (avg:0) -/obj/item/twohanded/rcl/pre_loaded => 0ms (3) (avg:0) -/obj/structure/closet/secure_closet/engineering_personal => 0ms (3) (avg:0) -/obj/item/storage/toolbox/syndicate => 0ms (3) (avg:0) -/obj/structure/closet/cabinet => 0ms (3) (avg:0) -/obj/item/storage/box/ingredients/wildcard => 0ms (3) (avg:0) -/obj/machinery/atmospherics/components/trinary/filter => 0ms (3) (avg:0) -/obj/structure/table/wood/bar => 0ms (3) (avg:0) -/obj/structure/window/reinforced/tinted/fulltile => 0ms (3) (avg:0) -/turf/closed/mineral/bscrystal => 0ms (3) (avg:0) -/obj/screen/parallax_layer/layer_1 => 0ms (2) (avg:0) -/obj/screen/parallax_layer/layer_2 => 0ms (2) (avg:0) -/obj/structure/closet/crate/secure/loot => 0ms (2) (avg:0) -/obj/machinery/atmospherics/components/trinary/filter/atmos/n2 => 0ms (2) (avg:0) -/obj/machinery/atmospherics/miner/nitrogen => 0ms (2) (avg:0) -/obj/machinery/atmospherics/components/trinary/filter/atmos/o2 => 0ms (2) (avg:0) -/obj/machinery/atmospherics/miner/oxygen => 0ms (2) (avg:0) -/obj/structure/closet/chefcloset => 0ms (2) (avg:0) -/obj/structure/closet/secure_closet/ertMed => 0ms (2) (avg:0) -/obj/item/defibrillator/compact/combat/loaded => 0ms (2) (avg:0) -/obj/structure/closet/secure_closet/ertSec => 0ms (2) (avg:0) -/obj/item/storage/box/flashes => 0ms (2) (avg:0) -/obj/structure/closet/secure_closet/ertEngi => 0ms (2) (avg:0) -/obj/item/storage/box/metalfoam => 0ms (2) (avg:0) -/obj/machinery/computer/camera_advanced => 0ms (2) (avg:0) -/obj/machinery/computer/shuttle/ferry => 0ms (2) (avg:0) -/obj/item/dice/d1 => 0ms (2) (avg:0) -/obj/machinery/computer/monitor/secret => 0ms (2) (avg:0) -/obj/machinery/computer/shuttle/white_ship => 0ms (2) (avg:0) -/obj/structure/closet/wardrobe/cargotech => 0ms (2) (avg:0) -/obj/structure/closet/secure_closet/quartermaster => 0ms (2) (avg:0) -/obj/structure/closet/secure_closet/courtroom => 0ms (2) (avg:0) -/obj/machinery/computer/security/hos => 0ms (2) (avg:0) -/obj/machinery/computer/card/minor/hos => 0ms (2) (avg:0) -/obj/item/gun/energy/e_gun/dragnet => 0ms (2) (avg:0) -/obj/item/storage/box/hug => 0ms (2) (avg:0) -/obj/machinery/computer/gulag_teleporter_computer => 0ms (2) (avg:0) -/obj/machinery/computer/security/labor => 0ms (2) (avg:0) -/obj/item/storage/box/prisoner => 0ms (2) (avg:0) -/obj/machinery/computer/camera_advanced/base_construction => 0ms (2) (avg:0) -/obj/item/storage/box/cups => 0ms (2) (avg:0) -/obj/machinery/computer/holodeck => 0ms (2) (avg:0) -/obj/machinery/computer/bank_machine => 0ms (2) (avg:0) -/turf/open/floor/wood => 0ms (2) (avg:0) -/obj/structure/closet/secure_closet/freezer/cream_pie => 0ms (2) (avg:0) -/obj/structure/closet/wardrobe/green => 0ms (2) (avg:0) -/obj/structure/fireaxecabinet => 0ms (2) (avg:0) -/obj/item/storage/box/evidence => 0ms (2) (avg:0) -/obj/machinery/computer/upload/ai => 0ms (2) (avg:0) -/obj/machinery/computer/upload/borg => 0ms (2) (avg:0) -/obj/machinery/computer/rdconsole/robotics => 0ms (2) (avg:0) -/obj/item/storage/box/masks => 0ms (2) (avg:0) -/obj/item/storage/box/gloves => 0ms (2) (avg:0) -/obj/machinery/computer/aifixer => 0ms (2) (avg:0) -/obj/machinery/computer/rdconsole/experiment => 0ms (2) (avg:0) -/obj/machinery/computer/robotics => 0ms (2) (avg:0) -/obj/machinery/computer/cloning => 0ms (2) (avg:0) -/obj/machinery/computer/mecha => 0ms (2) (avg:0) -/obj/machinery/airalarm/server => 0ms (2) (avg:0) -/obj/machinery/computer/security/qm => 0ms (2) (avg:0) -/obj/machinery/computer/rdservercontrol => 0ms (2) (avg:0) -/obj/machinery/computer/card/minor/rd => 0ms (2) (avg:0) -/obj/structure/closet/secure_closet/medical3 => 0ms (2) (avg:0) -/obj/structure/closet/l3closet/janitor => 0ms (2) (avg:0) -/obj/structure/closet/secure_closet/medical2 => 0ms (2) (avg:0) -/obj/machinery/computer/card/minor/cmo => 0ms (2) (avg:0) -/obj/machinery/door/airlock/research/glass/incinerator/toxmix_exterior => 0ms (2) (avg:0) -/obj/machinery/door/airlock/research/glass/incinerator/toxmix_interior => 0ms (2) (avg:0) -/obj/machinery/computer/atmos_control/tank/mix_tank => 0ms (2) (avg:0) -/obj/machinery/computer/atmos_control/tank/nitrous_tank => 0ms (2) (avg:0) -/obj/machinery/announcement_system => 0ms (2) (avg:0) -/obj/machinery/computer/message_monitor => 0ms (2) (avg:0) -/obj/structure/closet/secure_closet/atmospherics => 0ms (2) (avg:0) -/obj/machinery/computer/telecomms/server => 0ms (2) (avg:0) -/obj/machinery/computer/atmos_control/tank/toxin_tank => 0ms (2) (avg:0) -/obj/machinery/computer/atmos_control/tank/carbon_tank => 0ms (2) (avg:0) -/obj/machinery/computer/telecomms/monitor => 0ms (2) (avg:0) -/obj/machinery/computer/atmos_control/tank/nitrogen_tank => 0ms (2) (avg:0) -/obj/machinery/computer/atmos_control/tank/oxygen_tank => 0ms (2) (avg:0) -/obj/machinery/computer/atmos_control/tank/air_tank => 0ms (2) (avg:0) -/obj/machinery/computer/apc_control => 0ms (2) (avg:0) -/obj/structure/closet/firecloset/full => 0ms (2) (avg:0) -/obj/machinery/computer/card/minor/ce => 0ms (2) (avg:0) -/obj/machinery/computer/turbine_computer => 0ms (2) (avg:0) -/obj/machinery/door/airlock/public/glass/incinerator/atmos_interior => 0ms (2) (avg:0) -/obj/machinery/door/airlock/public/glass/incinerator/atmos_exterior => 0ms (2) (avg:0) -/obj/machinery/computer/rdconsole/production => 0ms (2) (avg:0) -/obj/machinery/door/airlock/abandoned => 0ms (2) (avg:0) -/obj/machinery/door/airlock/engineering/glass/critical => 0ms (2) (avg:0) -/obj/structure/closet/emcloset/anchored => 0ms (2) (avg:0) -/obj/structure/reflector/box/anchored => 0ms (2) (avg:0) -/obj/structure/reflector/single/anchored => 0ms (2) (avg:0) -/obj/machinery/computer/shuttle/labor/one_way => 0ms (2) (avg:0) -/obj/machinery/door/airlock/glass => 0ms (2) (avg:0) -/obj/machinery/atmospherics/components/unary/vent_pump => 0ms (2) (avg:0) -/obj/item/defibrillator => 0ms (2) (avg:0) -/obj/item/gun/energy/laser/retro/old => 0ms (2) (avg:0) -/obj/machinery/door/airlock/freezer => 0ms (2) (avg:0) -/obj/item/gps => 0ms (2) (avg:0) -/obj/item/storage/box/survival => 0ms (2) (avg:0) -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos => 0ms (2) (avg:0) -/obj/machinery/atmospherics/pipe/manifold => 0ms (2) (avg:0) -/obj/machinery/atmospherics/pipe/manifold4w/general => 0ms (2) (avg:0) -/obj/machinery/atmospherics/pipe/manifold4w => 0ms (2) (avg:0) -/turf/closed/wall/mineral/titanium/survival/nodiagonal => 0ms (2) (avg:0) -/obj/item/pda/heads/cmo => 0ms (2) (avg:0) -/mob/living/carbon/human/dummy => 0ms (2) (avg:0) -/obj/item/storage/box/stockparts/deluxe => 0ms (2) (avg:0) -/obj/item/bodypart/l_arm => 0ms (2) (avg:0) -/obj/item/bodypart/r_leg => 0ms (2) (avg:0) -/mob/dead/observer => 0ms (2) (avg:0) -/obj/structure/closet/crate/secure/gear => 0ms (1) (avg:0) -/obj/machinery/portable_atmospherics/canister/water_vapor => 0ms (1) (avg:0) -/obj/machinery/portable_atmospherics/canister/bz => 0ms (1) (avg:0) -/obj/structure/transit_tube/curved/flipped => 0ms (1) (avg:0) -/obj/structure/transit_tube/curved => 0ms (1) (avg:0) -/obj/structure/closet/crate/critter => 0ms (1) (avg:0) -/obj/structure/closet/crate/secure/engineering => 0ms (1) (avg:0) -/obj/structure/closet/crate/secure/weapon => 0ms (1) (avg:0) -/obj/machinery/atmospherics/components/trinary/mixer/airmix/inverse => 0ms (1) (avg:0) -/obj/machinery/atmospherics/pipe/manifold4w/supplymain/hidden => 0ms (1) (avg:0) -/obj/structure/door_assembly/door_assembly_mhatch => 0ms (1) (avg:0) -/obj/structure/door_assembly/door_assembly_public => 0ms (1) (avg:0) -/obj/item/gps/internal/legion => 0ms (1) (avg:0) -/obj/item/gps/internal/hierophant => 0ms (1) (avg:0) -/obj/item/dice => 0ms (1) (avg:0) -/obj/structure/closet/cardboard/metal => 0ms (1) (avg:0) -/obj/machinery/computer/telecrystals/boss => 0ms (1) (avg:0) -/obj/machinery/shuttle_manipulator => 0ms (1) (avg:0) -/obj/structure/closet/secure_closet/ertCom => 0ms (1) (avg:0) -/obj/item/gun/ballistic/automatic/pistol/deagle => 0ms (1) (avg:0) -/obj/machinery/computer/shuttle/syndicate/recall => 0ms (1) (avg:0) -/obj/item/stock_parts/cell/pulse/carbine => 0ms (1) (avg:0) -/obj/item/gun/energy/pulse/carbine/loyalpin => 0ms (1) (avg:0) -/obj/item/gun/ballistic/automatic/ar => 0ms (1) (avg:0) -/obj/structure/closet/secure_closet/contraband/heads => 0ms (1) (avg:0) -/obj/structure/closet/lawcloset => 0ms (1) (avg:0) -/obj/item/gun/energy/e_gun/mini/practice_phaser => 0ms (1) (avg:0) -/obj/screen/parallax_layer/layer_3 => 0ms (1) (avg:0) -/obj/item/dice/d2 => 0ms (1) (avg:0) -/obj/item/storage/box/seccarts => 0ms (1) (avg:0) -/obj/item/storage/box/deputy => 0ms (1) (avg:0) -/obj/structure/closet/bombcloset/security => 0ms (1) (avg:0) -/obj/item/storage/box/chemimp => 0ms (1) (avg:0) -/obj/item/storage/box/trackimp => 0ms (1) (avg:0) -/obj/item/gun/energy/temperature/security => 0ms (1) (avg:0) -/obj/structure/closet/secure_closet/lethalshots => 0ms (1) (avg:0) -/obj/structure/closet/l3closet/security => 0ms (1) (avg:0) -/obj/structure/closet/secure_closet/hos => 0ms (1) (avg:0) -/obj/item/gun/energy/e_gun/hos => 0ms (1) (avg:0) -/obj/structure/closet/secure_closet/contraband/armory => 0ms (1) (avg:0) -/obj/structure/closet/secure_closet/injection => 0ms (1) (avg:0) -/obj/structure/closet/secure_closet/warden => 0ms (1) (avg:0) -/obj/item/construction/rcd/internal => 0ms (1) (avg:0) -/obj/item/stock_parts/cell/potato => 0ms (1) (avg:0) -/obj/structure/closet/boxinggloves => 0ms (1) (avg:0) -/obj/structure/closet/masks => 0ms (1) (avg:0) -/obj/structure/closet/lasertag/blue => 0ms (1) (avg:0) -/obj/structure/closet/lasertag/red => 0ms (1) (avg:0) -/obj/item/construction/rcd => 0ms (1) (avg:0) -/obj/item/folder/documents => 0ms (1) (avg:0) -/obj/structure/closet/secure_closet/bar => 0ms (1) (avg:0) -/obj/item/reagent_containers/glass/bottle/nutrient/ez => 0ms (1) (avg:0) -/obj/item/reagent_containers/glass/bottle/nutrient/rh => 0ms (1) (avg:0) -/obj/structure/closet/secure_closet/exile => 0ms (1) (avg:0) -/obj/item/lighter/greyscale => 0ms (1) (avg:0) -/obj/item/storage/box/PDAs => 0ms (1) (avg:0) -/obj/structure/closet/secure_closet/detective => 0ms (1) (avg:0) -/obj/item/gun/energy/laser/captain => 0ms (1) (avg:0) -/obj/machinery/gravity_generator/part => 0ms (1) (avg:0) -/obj/structure/closet/secure_closet/security/med => 0ms (1) (avg:0) -/obj/item/reagent_containers/glass/beaker/sulphuric => 0ms (1) (avg:0) -/obj/structure/closet/secure_closet/captains => 0ms (1) (avg:0) -/obj/item/storage/belt/sabre => 0ms (1) (avg:0) -/obj/item/storage/box/disks => 0ms (1) (avg:0) -/obj/structure/closet/secure_closet/hop => 0ms (1) (avg:0) -/obj/structure/closet/secure_closet/security/science => 0ms (1) (avg:0) -/obj/structure/closet/secure_closet/security/cargo => 0ms (1) (avg:0) -/obj/structure/closet/secure_closet/RD => 0ms (1) (avg:0) -/obj/structure/closet/wardrobe/miner => 0ms (1) (avg:0) -/obj/item/reagent_containers/glass/beaker/synthflesh => 0ms (1) (avg:0) -/obj/item/reagent_containers/blood/APlus => 0ms (1) (avg:0) -/obj/structure/closet/secure_closet/CMO => 0ms (1) (avg:0) -/obj/item/defibrillator/compact/loaded => 0ms (1) (avg:0) -/obj/item/organ/cyberimp/eyes/hud/medical => 0ms (1) (avg:0) -/obj/item/reagent_containers/glass/bottle/vial/large/preloaded/CMO => 0ms (1) (avg:0) -/obj/item/reagent_containers/glass/bottle/vial/large/preloaded/tricord => 0ms (1) (avg:0) -/obj/item/reagent_containers/glass/bottle/vial/large/preloaded/charcoal => 0ms (1) (avg:0) -/obj/item/reagent_containers/glass/bottle/vial/large/preloaded/salglu => 0ms (1) (avg:0) -/obj/item/reagent_containers/glass/bottle/vial/large/preloaded/dexalin => 0ms (1) (avg:0) -/obj/item/reagent_containers/glass/bottle/vial/large/preloaded/synthflesh => 0ms (1) (avg:0) -/obj/item/stack/ore/silver => 0ms (1) (avg:0) -/obj/item/reagent_containers/glass/bottle/cold => 0ms (1) (avg:0) -/obj/item/reagent_containers/glass/bottle/flu_virion => 0ms (1) (avg:0) -/obj/item/reagent_containers/glass/bottle/plasma => 0ms (1) (avg:0) -/obj/item/reagent_containers/glass/bottle/synaptizine => 0ms (1) (avg:0) -/obj/item/reagent_containers/glass/bottle/formaldehyde => 0ms (1) (avg:0) -/obj/structure/closet/secure_closet/security/engine => 0ms (1) (avg:0) -/obj/structure/closet/l3closet/virology => 0ms (1) (avg:0) -/turf/open/floor/plasteel/dark/telecomms => 0ms (1) (avg:0) -/obj/structure/closet/secure_closet/freezer/kitchen/maintenance => 0ms (1) (avg:0) -/obj/item/clothing/under/maid => 0ms (1) (avg:0) -/obj/structure/closet/secure_closet/engineering_chief => 0ms (1) (avg:0) -/obj/structure/closet/secure_closet/engineering_electrical => 0ms (1) (avg:0) -/obj/structure/closet/secure_closet/engineering_welding => 0ms (1) (avg:0) -/obj/machinery/airalarm/engine => 0ms (1) (avg:0) -/obj/structure/closet/wardrobe/engineering_yellow => 0ms (1) (avg:0) -/obj/structure/reflector/double/anchored => 0ms (1) (avg:0) -/obj/structure/necropolis_gate/locked => 0ms (1) (avg:0) -/obj/structure/necropolis_gate/legion_gate => 0ms (1) (avg:0) -/obj/structure/necropolis_arch => 0ms (1) (avg:0) -/obj/item/construction/rcd/loaded => 0ms (1) (avg:0) -/obj/structure/necropolis_gate => 0ms (1) (avg:0) -/obj/item/reagent_containers/glass/bottle/aluminium => 0ms (1) (avg:0) -/obj/item/reagent_containers/glass/bottle/bromine => 0ms (1) (avg:0) -/obj/item/reagent_containers/glass/bottle/sugar => 0ms (1) (avg:0) -/obj/item/reagent_containers/glass/bottle/sulfur => 0ms (1) (avg:0) -/obj/item/reagent_containers/glass/bottle/carbon => 0ms (1) (avg:0) -/obj/item/reagent_containers/glass/bottle/chlorine => 0ms (1) (avg:0) -/obj/item/reagent_containers/glass/bottle/mercury => 0ms (1) (avg:0) -/obj/item/reagent_containers/glass/bottle/nitrogen => 0ms (1) (avg:0) -/obj/item/reagent_containers/glass/bottle/oxygen => 0ms (1) (avg:0) -/obj/item/reagent_containers/glass/bottle/phosphorus => 0ms (1) (avg:0) -/obj/item/reagent_containers/glass/bottle/silver => 0ms (1) (avg:0) -/obj/item/reagent_containers/glass/bottle/sodium => 0ms (1) (avg:0) -/obj/item/reagent_containers/glass/bottle/copper => 0ms (1) (avg:0) -/obj/item/reagent_containers/glass/bottle/ethanol => 0ms (1) (avg:0) -/obj/item/reagent_containers/glass/bottle/fluorine => 0ms (1) (avg:0) -/obj/item/reagent_containers/glass/bottle/hydrogen => 0ms (1) (avg:0) -/obj/item/reagent_containers/glass/bottle/water => 0ms (1) (avg:0) -/obj/item/reagent_containers/glass/bottle/iodine => 0ms (1) (avg:0) -/obj/item/reagent_containers/glass/bottle/iron => 0ms (1) (avg:0) -/obj/item/reagent_containers/glass/bottle/lithium => 0ms (1) (avg:0) -/obj/item/reagent_containers/glass/bottle/potassium => 0ms (1) (avg:0) -/obj/item/reagent_containers/glass/bottle/radium => 0ms (1) (avg:0) -/obj/item/reagent_containers/glass/bottle/welding_fuel => 0ms (1) (avg:0) -/obj/item/reagent_containers/glass/bottle/sacid => 0ms (1) (avg:0) -/obj/item/reagent_containers/glass/bottle/silicon => 0ms (1) (avg:0) -/obj/item/gun/energy/e_gun/old => 0ms (1) (avg:0) -/obj/item/stack/ore/bluespace_crystal => 0ms (1) (avg:0) -/obj/item/gun/energy/laser/scatter/shotty => 0ms (1) (avg:0) -/obj/structure/closet/secure_closet/freezer/kitchen/mining => 0ms (1) (avg:0) -/obj/item/reagent_containers/syringe/lethal/choral => 0ms (1) (avg:0) -/obj/item/reagent_containers/glass/bottle/chloralhydrate => 0ms (1) (avg:0) -/obj/item/reagent_containers/glass/bottle/facid => 0ms (1) (avg:0) -/obj/item/storage/box/medipens => 0ms (1) (avg:0) -/obj/machinery/power/generator => 0ms (1) (avg:0) -/obj/item/folder/syndicate/mining => 0ms (1) (avg:0) -/obj/machinery/computer/prototype_cloning => 0ms (1) (avg:0) -/obj/item/stock_parts/cell/pumpaction => 0ms (1) (avg:0) -/area/space => 0ms (1) (avg:0) -/area/awaymission/errorroom => 0ms (1) (avg:0) -/area/abductor_ship => 0ms (1) (avg:0) -/area/fabric_of_reality => 0ms (1) (avg:0) -/area/ai_multicam_room => 0ms (1) (avg:0) -/area/tdome/arena => 0ms (1) (avg:0) -/area/centcom/supplypod => 0ms (1) (avg:0) -/area/centcom/supplypod/podStorage => 0ms (1) (avg:0) -/area/centcom/supplypod/loading/three => 0ms (1) (avg:0) -/area/centcom/supplypod/loading/four => 0ms (1) (avg:0) -/area/centcom/supplypod/loading/one => 0ms (1) (avg:0) -/area/centcom/supplypod/loading/two => 0ms (1) (avg:0) -/area/syndicate_mothership => 0ms (1) (avg:0) -/area/ctf => 0ms (1) (avg:0) -/area/start => 0ms (1) (avg:0) -/area/tdome/arena_source => 0ms (1) (avg:0) -/area/holodeck/rec_center/refuel => 0ms (1) (avg:0) -/area/holodeck/rec_center/spacechess => 0ms (1) (avg:0) -/area/holodeck/rec_center/thunderdome1218 => 0ms (1) (avg:0) -/area/holodeck/rec_center/kobayashi => 0ms (1) (avg:0) -/area/holodeck/rec_center/chapelcourt => 0ms (1) (avg:0) -/area/holodeck/rec_center/school => 0ms (1) (avg:0) -/area/holodeck/rec_center/firingrange => 0ms (1) (avg:0) -/area/holodeck/rec_center/anthophila => 0ms (1) (avg:0) -/area/holodeck/rec_center/pet_lounge => 0ms (1) (avg:0) -/area/holodeck/rec_center/medical => 0ms (1) (avg:0) -/area/holodeck/rec_center/basketball => 0ms (1) (avg:0) -/area/holodeck/rec_center/beach => 0ms (1) (avg:0) -/area/holodeck/rec_center/thunderdome => 0ms (1) (avg:0) -/area/holodeck/rec_center/dodgeball => 0ms (1) (avg:0) -/area/holodeck/rec_center/winterwonderland => 0ms (1) (avg:0) -/area/holodeck/rec_center/bunker => 0ms (1) (avg:0) -/area/holodeck/rec_center/lounge => 0ms (1) (avg:0) -/area/holodeck/rec_center/wildlife => 0ms (1) (avg:0) -/area/holodeck/rec_center/offline => 0ms (1) (avg:0) -/area/holodeck/rec_center/burn => 0ms (1) (avg:0) -/area/holodeck/rec_center/court => 0ms (1) (avg:0) -/area/space/nearstation => 0ms (1) (avg:0) -/area/solar/port/fore => 0ms (1) (avg:0) -/area/solar/starboard/fore => 0ms (1) (avg:0) -/area/holodeck/rec_center => 0ms (1) (avg:0) -/area/solar/port/aft => 0ms (1) (avg:0) -/area/solar/starboard/aft => 0ms (1) (avg:0) -/obj/item/gps/internal/bubblegum => 0ms (1) (avg:0) -/obj/item/paper/monitorkey => 0ms (1) (avg:0) -/obj/machinery/atmospherics/components/trinary/mixer => 0ms (1) (avg:0) -/obj/machinery/atmospherics/components/trinary/mixer/flipped => 0ms (1) (avg:0) -/obj/machinery/atmospherics/components/trinary/filter/atmos/n2o => 0ms (1) (avg:0) -/obj/machinery/atmospherics/components/trinary/filter/atmos/plasma => 0ms (1) (avg:0) -/obj/machinery/atmospherics/components/trinary/mixer/airmix => 0ms (1) (avg:0) -/obj/machinery/atmospherics/components/trinary/filter/atmos/co2 => 0ms (1) (avg:0) -/obj/machinery/atmospherics/pipe/manifold/cyan/hidden => 0ms (1) (avg:0) -/obj/machinery/atmospherics/pipe/manifold/general/hidden => 0ms (1) (avg:0) -/obj/machinery/atmospherics/pipe/manifold/orange/visible => 0ms (1) (avg:0) -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/engine_waste => 0ms (1) (avg:0) -/obj/structure/falsewall => 0ms (1) (avg:0) -/turf/closed/mineral/gibtonite => 0ms (1) (avg:0) -/obj/machinery/computer/shuttle/syndicate/drop_pod => 0ms (1) (avg:0) -/obj/structure/closet/syndicate/nuclear => 0ms (1) (avg:0) -/obj/item/pda/syndicate => 0ms (1) (avg:0) -/obj/machinery/computer/med_data/syndie => 0ms (1) (avg:0) -/obj/machinery/computer/crew/syndie => 0ms (1) (avg:0) -/obj/machinery/computer/camera_advanced/shuttle_docker/syndicate => 0ms (1) (avg:0) -/obj/machinery/computer/shuttle/syndicate => 0ms (1) (avg:0) -/obj/machinery/computer/camera_advanced/syndie => 0ms (1) (avg:0) -/obj/machinery/computer/secure_data/syndie => 0ms (1) (avg:0) -/obj/machinery/computer/shuttle/ferry/request => 0ms (1) (avg:0) -/obj/screen/zone_sel => 0ms (1) (avg:0) -/area/shuttle/transit => 0ms (1) (avg:0) -/obj/item/book/manual/wiki/medical_cloning => 0ms (1) (avg:0) -/obj/item/clothing/under/rank/chief_medical_officer => 0ms (1) (avg:0) -/obj/item/clothing/suit/toggle/labcoat/cmo => 0ms (1) (avg:0) -/obj/item/clothing/shoes/sneakers/brown => 0ms (1) (avg:0) -/obj/item/stack/ore/glass => 0ms (1) (avg:0) diff --git a/data/logs/2019/12/03/round-23.56.34/pda.log b/data/logs/2019/12/03/round-23.56.34/pda.log deleted file mode 100644 index 77d11362..00000000 --- a/data/logs/2019/12/03/round-23.56.34/pda.log +++ /dev/null @@ -1,2 +0,0 @@ -[2019-12-04 04:56:34.963] Starting up round ID . - - ------------------------- diff --git a/data/logs/2019/12/03/round-23.56.34/qdel.log b/data/logs/2019/12/03/round-23.56.34/qdel.log deleted file mode 100644 index 30bd3754..00000000 --- a/data/logs/2019/12/03/round-23.56.34/qdel.log +++ /dev/null @@ -1,3658 +0,0 @@ -[2019-12-04 04:56:34.967] Starting up round ID . - - ------------------------- -[2019-12-04 05:12:34.799] QDEL: Path: /mob/living/simple_animal/hostile/megafauna/bubblegum - - qdel() Count: 5 - - Destroy() Cost: 2ms - - Total Hard Deletes 5 - - Time Spent Hard Deleting: 594ms - - Path: /mob/living/simple_animal/hostile/asteroid/hivelord/legion/random - - qdel() Count: 3 - - Destroy() Cost: 1ms - - Total Hard Deletes 3 - - Time Spent Hard Deleting: 370ms - - Path: /turf/closed/mineral/random/volcanic - - qdel() Count: 13310 - - Destroy() Cost: 558ms - - Path: /obj/effect/turf_decal/tile/blue - - qdel() Count: 3161 - - Destroy() Cost: 497ms - - Path: /obj/effect/turf_decal/tile/neutral - - qdel() Count: 5232 - - Destroy() Cost: 262ms - - Path: /obj/effect/turf_decal/stripes/line - - qdel() Count: 1518 - - Destroy() Cost: 235ms - - Path: /obj/effect/turf_decal/tile/red - - qdel() Count: 3237 - - Destroy() Cost: 214ms - - Path: /obj/effect/turf_decal/tile/bar - - qdel() Count: 432 - - Destroy() Cost: 120ms - - Path: /obj/effect/decal/cleanable/dirt - - qdel() Count: 922 - - Destroy() Cost: 90ms - - Path: /turf/open/space/basic - - qdel() Count: 1927 - - Destroy() Cost: 41ms - - Path: /obj/effect/spawner/structure/window/reinforced - - qdel() Count: 1385 - - Destroy() Cost: 41ms - - Path: /datum/light_source - - qdel() Count: 837 - - Destroy() Cost: 39ms - - Path: /turf/open/space - - qdel() Count: 766 - - Destroy() Cost: 35ms - - Path: /obj/effect/turf_decal/tile/green - - qdel() Count: 698 - - Destroy() Cost: 34ms - - Path: /atom/movable/lighting_object - - qdel() Count: 1270 - - Destroy() Cost: 26ms - - Path: /turf/closed/mineral/random/labormineral/volcanic - - qdel() Count: 729 - - Destroy() Cost: 24ms - - Path: /datum/timedevent - - qdel() Count: 1683 - - Destroy() Cost: 23ms - - Path: /datum/radiation_wave - - qdel() Count: 3680 - - Destroy() Cost: 22ms - - Path: /obj/effect/turf_decal/tile/brown - - qdel() Count: 516 - - Destroy() Cost: 20ms - - Path: /turf/open/floor/plating/asteroid/airless/cave/volcanic/has_data - - qdel() Count: 301 - - Destroy() Cost: 20ms - - Path: /turf/open/floor/plating/asteroid/snow/airless - - qdel() Count: 306 - - Destroy() Cost: 15ms - - Path: /datum/reagents - - qdel() Count: 929 - - Destroy() Cost: 13ms - - Path: /obj/effect/turf_decal/tile/yellow - - qdel() Count: 516 - - Destroy() Cost: 12ms - - Path: /obj/effect/turf_decal/loading_area - - qdel() Count: 383 - - Destroy() Cost: 12ms - - Path: /obj/effect/hotspot - - qdel() Count: 90 - - Destroy() Cost: 12ms - - Path: /turf/open/floor/plating/asteroid/basalt/lava_land_surface - - qdel() Count: 360 - - Destroy() Cost: 11ms - - Path: /turf/closed/mineral/iron/volcanic - - qdel() Count: 222 - - Destroy() Cost: 11ms - - Path: /datum/powernet - - qdel() Count: 779 - - Destroy() Cost: 10ms - - Path: /obj/effect/turf_decal/delivery - - qdel() Count: 275 - - Destroy() Cost: 10ms - - Path: /turf/closed/wall/mineral/plastitanium - - qdel() Count: 118 - - Destroy() Cost: 9ms - - Path: /obj/effect/mapping_helpers/airlock/cyclelink_helper - - qdel() Count: 204 - - Destroy() Cost: 8ms - - Path: /obj/effect/mapping_helpers/no_lava - - qdel() Count: 202 - - Destroy() Cost: 8ms - - Path: /turf/closed/wall/mineral/titanium - - qdel() Count: 222 - - Destroy() Cost: 7ms - - Path: /obj/effect/turf_decal/bot - - qdel() Count: 189 - - Destroy() Cost: 7ms - - Path: /obj/effect/spawner/structure/window - - qdel() Count: 151 - - Destroy() Cost: 7ms - - Path: /datum/component/mirage_border - - qdel() Count: 96 - - Destroy() Cost: 7ms - - Path: /obj/effect/temp_visual/cult/turf/floor - - qdel() Count: 222 - - Destroy() Cost: 6ms - - Path: /obj/effect/turf_decal/tile/purple - - qdel() Count: 126 - - Destroy() Cost: 6ms - - Path: /turf/open/floor/engine - - qdel() Count: 50 - - Destroy() Cost: 5ms - - Path: /obj/item/projectile/beam/beam_rifle/hitscan/aiming_beam - - qdel() Count: 16 - - Destroy() Cost: 5ms - - Path: /image - - qdel() Count: 1234 - - Destroy() Cost: 4ms - - Path: /turf/open/floor/plating - - qdel() Count: 232 - - Destroy() Cost: 4ms - - Path: /turf/open/space/transit/west - - qdel() Count: 99 - - Destroy() Cost: 4ms - - Path: /obj/effect/abstract/mirage_holder - - qdel() Count: 96 - - Destroy() Cost: 4ms - - Path: /turf/closed/mineral/volcanic/lava_land_surface - - qdel() Count: 28 - - Destroy() Cost: 4ms - - Path: /obj/machinery/computer/arcade - - qdel() Count: 24 - - Destroy() Cost: 4ms - - Path: /obj/effect/projectile_lighting - - qdel() Count: 20 - - Destroy() Cost: 4ms - - Path: /obj/item/projectile/beam/beam_rifle/hitscan - - qdel() Count: 15 - - Destroy() Cost: 4ms - - Path: /obj/effect/spawner/lootdrop/maintenance - - qdel() Count: 130 - - Destroy() Cost: 3ms - - Path: /turf/closed/mineral/random/high_chance/volcanic - - qdel() Count: 105 - - Destroy() Cost: 3ms - - Path: /obj/effect/spawner/structure/window/shuttle - - qdel() Count: 57 - - Destroy() Cost: 3ms - - Path: /obj/effect/spawner/structure/window/hollow/reinforced/end - - qdel() Count: 29 - - Destroy() Cost: 3ms - - Path: /obj/effect/landmark/blobstart - - qdel() Count: 22 - - Destroy() Cost: 3ms - - Path: /obj/item/stack/medical/gauze - - qdel() Count: 15 - - Destroy() Cost: 3ms - - Path: /obj/effect/particle_effect/sparks - - qdel() Count: 11 - - Destroy() Cost: 3ms - - Path: /turf/open/floor/mineral/titanium/blue - - qdel() Count: 182 - - Destroy() Cost: 2ms - - Path: /turf/open/floor/plasteel/dark - - qdel() Count: 136 - - Destroy() Cost: 2ms - - Path: /obj/effect/turf_decal/stripes/corner - - qdel() Count: 76 - - Destroy() Cost: 2ms - - Path: /turf/closed/mineral/random/low_chance - - qdel() Count: 62 - - Destroy() Cost: 2ms - - Path: /turf/closed/mineral/plasma/volcanic - - qdel() Count: 51 - - Destroy() Cost: 2ms - - Path: /turf/closed/mineral/random/high_chance - - qdel() Count: 48 - - Destroy() Cost: 2ms - - Path: /turf/open/floor/plating/asteroid/airless/cave/volcanic - - qdel() Count: 39 - - Destroy() Cost: 2ms - - Path: /obj/effect/spawner/structure/window/plasma/reinforced - - qdel() Count: 36 - - Destroy() Cost: 2ms - - Path: /atom/movable/virtualspeaker - - qdel() Count: 35 - - Destroy() Cost: 2ms - - Path: /obj/effect/landmark/thunderdome/two - - qdel() Count: 30 - - Destroy() Cost: 2ms - - Path: /turf/closed/mineral/silver/volcanic - - qdel() Count: 27 - - Destroy() Cost: 2ms - - Path: /obj/effect/turf_decal/sand - - qdel() Count: 23 - - Destroy() Cost: 2ms - - Path: /turf/closed/mineral/uranium/volcanic - - qdel() Count: 13 - - Destroy() Cost: 2ms - - Path: /obj/effect/decal/cleanable/ash - - qdel() Count: 4 - - Destroy() Cost: 2ms - - Path: /obj/item/radio/headset/heads/cmo - - qdel() Count: 2 - - Destroy() Cost: 2ms - - Path: /mob/living/simple_animal/mouse - - qdel() Count: 2 - - Destroy() Cost: 2ms - - Total Hard Deletes 2 - - Time Spent Hard Deleting: 0ms - - Path: /obj/effect/landmark/start/wizard - - Failures: 1 - - qdel() Count: 1 - - Destroy() Cost: 1ms - - Total Hard Deletes 1 - - Time Spent Hard Deleting: 0ms - - Path: /datum/point/vector - - qdel() Count: 75 - - Destroy() Cost: 1ms - - Path: /turf/open/floor/plating/airless - - qdel() Count: 73 - - Destroy() Cost: 1ms - - Path: /turf/open/floor/mineral/plastitanium/red - - qdel() Count: 62 - - Destroy() Cost: 1ms - - Path: /datum/component/redirect - - qdel() Count: 59 - - Destroy() Cost: 1ms - - Path: /obj/effect/temp_visual/cult/turf - - qdel() Count: 41 - - Destroy() Cost: 1ms - - Path: /datum/language_holder - - qdel() Count: 36 - - Destroy() Cost: 1ms - - Path: /obj/effect/turf_decal/bot_white - - qdel() Count: 35 - - Destroy() Cost: 1ms - - Path: /turf/closed/mineral/gold/volcanic - - qdel() Count: 33 - - Destroy() Cost: 1ms - - Path: /obj/effect/spawner/structure/window/hollow/reinforced - - qdel() Count: 31 - - Destroy() Cost: 1ms - - Path: /turf/closed/mineral/titanium/volcanic - - qdel() Count: 31 - - Destroy() Cost: 1ms - - Path: /obj/effect/landmark/thunderdome/observe - - qdel() Count: 21 - - Destroy() Cost: 1ms - - Path: /obj/effect/spawner/structure/window/hollow/reinforced/middle - - qdel() Count: 20 - - Destroy() Cost: 1ms - - Path: /obj/effect/landmark/xeno_spawn - - qdel() Count: 16 - - Destroy() Cost: 1ms - - Path: /obj/screen/fullscreen/oxy - - qdel() Count: 15 - - Destroy() Cost: 1ms - - Path: /obj/machinery/vending/cola/random - - qdel() Count: 13 - - Destroy() Cost: 1ms - - Path: /turf/open/floor/mineral/titanium/white - - qdel() Count: 13 - - Destroy() Cost: 1ms - - Path: /obj/effect/landmark/prisonwarp - - qdel() Count: 12 - - Destroy() Cost: 1ms - - Path: /obj/effect/spawner/lootdrop/crate_spawner - - qdel() Count: 7 - - Destroy() Cost: 1ms - - Path: /obj/effect/ebeam - - qdel() Count: 5 - - Destroy() Cost: 1ms - - Path: /obj/effect/overlay/vis - - qdel() Count: 5 - - Destroy() Cost: 1ms - - Path: /obj/item/stack/sheet/mineral/wood - - qdel() Count: 4 - - Destroy() Cost: 1ms - - Path: /datum/reagent/ash - - qdel() Count: 4 - - Destroy() Cost: 1ms - - Path: /obj/item/stack/sheet/glass - - qdel() Count: 3 - - Destroy() Cost: 1ms - - Path: /obj/item/organ/lungs - - qdel() Count: 3 - - Destroy() Cost: 1ms - - Path: /obj/item/clothing/suit/toggle/labcoat/cmo - - qdel() Count: 2 - - Destroy() Cost: 1ms - - Path: /obj/item/clothing/shoes/sneakers/brown - - qdel() Count: 2 - - Destroy() Cost: 1ms - - Path: /obj/item/clothing/under/rank/chief_medical_officer - - qdel() Count: 2 - - Destroy() Cost: 1ms - - Path: /datum/beam - - qdel() Count: 2 - - Destroy() Cost: 1ms - - Path: /datum/mood_event/on_fire - - qdel() Count: 2 - - Destroy() Cost: 1ms - - Path: /obj/item/reagent_containers/food/snacks/grown/harebell - - qdel() Count: 1 - - Destroy() Cost: 1ms - - Path: /obj/item/reagent_containers/food/snacks/grown/potato/wedges - - qdel() Count: 1 - - Destroy() Cost: 1ms - - Path: /obj/item/reagent_containers/food/snacks/grown - - qdel() Count: 1 - - Destroy() Cost: 1ms - - Path: /obj/item/reagent_containers/food/snacks/baguette - - qdel() Count: 1 - - Destroy() Cost: 1ms - - Path: /obj/item/reagent_containers/food/snacks/burger/orange - - qdel() Count: 1 - - Destroy() Cost: 1ms - - Path: /obj/item/reagent_containers/food/snacks/cakeslice/pumpkinspice - - qdel() Count: 1 - - Destroy() Cost: 1ms - - Path: /obj/item/reagent_containers/food/snacks/spacefreezy - - qdel() Count: 1 - - Destroy() Cost: 1ms - - Path: /obj/item/reagent_containers/food/snacks/chocolatestrawberry - - qdel() Count: 1 - - Destroy() Cost: 1ms - - Path: /obj/item/reagent_containers/food/snacks/strawberrycupcake - - qdel() Count: 1 - - Destroy() Cost: 1ms - - Path: /obj/item/reagent_containers/food/snacks/dulcedebatataslice - - qdel() Count: 1 - - Destroy() Cost: 1ms - - Path: /obj/item/reagent_containers/food/snacks/salad/fruit - - qdel() Count: 1 - - Destroy() Cost: 1ms - - Path: /obj/item/reagent_containers/food/snacks/soup/clownstears - - qdel() Count: 1 - - Destroy() Cost: 1ms - - Path: /obj/item/reagent_containers/food/snacks/sushi_rice - - qdel() Count: 1 - - Destroy() Cost: 1ms - - Path: /obj/item/reagent_containers/food/snacks/meat/steak - - qdel() Count: 1 - - Destroy() Cost: 1ms - - Path: /obj/item/reagent_containers/food/snacks/rationpack - - qdel() Count: 1 - - Destroy() Cost: 1ms - - Path: /obj/item/reagent_containers/food/drinks/flask/russian - - qdel() Count: 1 - - Destroy() Cost: 1ms - - Path: /obj/item/seeds/cannabis - - qdel() Count: 1 - - Destroy() Cost: 1ms - - Path: /obj/item/seeds/garlic - - qdel() Count: 1 - - Destroy() Cost: 1ms - - Path: /obj/item/seeds/peach - - qdel() Count: 1 - - Destroy() Cost: 1ms - - Path: /datum/holiday/animal - - qdel() Count: 1 - - Destroy() Cost: 1ms - - Path: /datum/species/insect - - qdel() Count: 1 - - Destroy() Cost: 1ms - - Path: /obj/effect/mapping_helpers/planet_z - - qdel() Count: 1 - - Destroy() Cost: 1ms - - Path: /obj/item/book/random/triple - - qdel() Count: 1 - - Destroy() Cost: 1ms - - Path: /obj/item/flashlight/pen - - qdel() Count: 1 - - Destroy() Cost: 1ms - - Path: /datum/action/item_action/toggle_light - - qdel() Count: 1 - - Destroy() Cost: 1ms - - Path: /obj/item/card/id/silver - - qdel() Count: 1 - - Destroy() Cost: 1ms - - Path: /obj/item/storage/firstaid/regular - - qdel() Count: 1 - - Destroy() Cost: 1ms - - Path: /obj/effect/landmark/start/bartender - - qdel() Count: 1 - - Destroy() Cost: 1ms - - Path: /datum/action/item_action/storage_gather_mode - - qdel() Count: 1 - - Destroy() Cost: 1ms - - Path: /obj/item/book/manual/wiki/medical_cloning - - qdel() Count: 1 - - Destroy() Cost: 1ms - - Path: /obj/structure/lattice - - qdel() Count: 1 - - Destroy() Cost: 1ms - - Path: /turf/closed/wall/r_wall - - qdel() Count: 1 - - Destroy() Cost: 1ms - - Path: /obj/effect/landmark/start/nukeop - - Failures: 4 - - qdel() Count: 4 - - Destroy() Cost: 0ms - - Total Hard Deletes 4 - - Time Spent Hard Deleting: 0ms - - Path: /obj/effect/landmark/start/nukeop_leader - - Failures: 1 - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Total Hard Deletes 1 - - Time Spent Hard Deleting: 0ms - - Path: /obj/effect/landmark/start/new_player - - Failures: 1 - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Total Hard Deletes 1 - - Time Spent Hard Deleting: 0ms - - Path: /datum/component/forensics - - qdel() Count: 141 - - Destroy() Cost: 0ms - - Path: /turf/open/floor/mineral/titanium - - qdel() Count: 131 - - Destroy() Cost: 0ms - - Path: /obj/effect/landmark/thunderdome/one - - qdel() Count: 30 - - Destroy() Cost: 0ms - - Path: /datum/wires/vending - - qdel() Count: 24 - - Destroy() Cost: 0ms - - Path: /turf/closed/mineral/random - - qdel() Count: 21 - - Destroy() Cost: 0ms - - Path: /obj/effect/landmark/start/assistant - - qdel() Count: 19 - - Destroy() Cost: 0ms - - Path: /turf/open/floor/pod/light - - qdel() Count: 17 - - Destroy() Cost: 0ms - - Path: /obj/effect/projectile/tracer/tracer/aiming - - qdel() Count: 16 - - Destroy() Cost: 0ms - - Path: /obj/effect/landmark/start/security_officer - - qdel() Count: 15 - - Destroy() Cost: 0ms - - Path: /obj/effect/turf_decal/plaque - - qdel() Count: 14 - - Destroy() Cost: 0ms - - Path: /obj/docking_port/stationary - - qdel() Count: 14 - - Destroy() Cost: 0ms - - Path: /obj/effect/turf_decal/sand/plating - - qdel() Count: 12 - - Destroy() Cost: 0ms - - Path: /turf/open/floor/mineral/titanium/yellow - - qdel() Count: 12 - - Destroy() Cost: 0ms - - Path: /obj/machinery/vending/snack/random - - qdel() Count: 11 - - Destroy() Cost: 0ms - - Path: /obj/effect/landmark/holding_facility - - qdel() Count: 10 - - Destroy() Cost: 0ms - - Path: /obj/item/circuitboard/computer/arcade/orion_trail - - qdel() Count: 10 - - Destroy() Cost: 0ms - - Path: /obj/item/circuitboard/computer/arcade/battle - - qdel() Count: 10 - - Destroy() Cost: 0ms - - Path: /turf/open/floor/pod/dark - - qdel() Count: 10 - - Destroy() Cost: 0ms - - Path: /turf/open/floor/mineral/plastitanium/red/brig - - qdel() Count: 10 - - Destroy() Cost: 0ms - - Path: /obj/effect/temp_visual/explosion/fast - - qdel() Count: 10 - - Destroy() Cost: 0ms - - Path: /obj/effect/landmark/ert_spawn - - qdel() Count: 9 - - Destroy() Cost: 0ms - - Path: /obj/effect/baseturf_helper/asteroid/airless - - qdel() Count: 9 - - Destroy() Cost: 0ms - - Path: /obj/effect/temp_visual/dir_setting/firing_effect/energy - - qdel() Count: 9 - - Destroy() Cost: 0ms - - Path: /obj/effect/projectile/tracer/tracer/beam_rifle - - qdel() Count: 9 - - Destroy() Cost: 0ms - - Path: /obj/effect/landmark/thunderdome/admin - - qdel() Count: 8 - - Destroy() Cost: 0ms - - Path: /obj/effect/spawner/lootdrop/mre - - qdel() Count: 8 - - Destroy() Cost: 0ms - - Path: /datum/component/squeak - - qdel() Count: 8 - - Destroy() Cost: 0ms - - Path: /datum/status_effect/crusher_damage - - qdel() Count: 8 - - Destroy() Cost: 0ms - - Path: /datum/job/doctor - - qdel() Count: 7 - - Destroy() Cost: 0ms - - Path: /obj/effect/turf_decal/bot_white/right - - qdel() Count: 7 - - Destroy() Cost: 0ms - - Path: /obj/effect/turf_decal/bot_white/left - - qdel() Count: 7 - - Destroy() Cost: 0ms - - Path: /datum/effect_system/spark_spread - - qdel() Count: 7 - - Destroy() Cost: 0ms - - Path: /obj/effect/mapping_helpers/airlock/locked - - qdel() Count: 6 - - Destroy() Cost: 0ms - - Path: /obj/effect/spawner/lootdrop/gloves - - qdel() Count: 6 - - Destroy() Cost: 0ms - - Path: /obj/effect/spawner/lootdrop/bedsheet - - qdel() Count: 6 - - Destroy() Cost: 0ms - - Path: /obj/item/toy/plush/random - - qdel() Count: 6 - - Destroy() Cost: 0ms - - Path: /turf/closed/mineral/gibtonite/volcanic - - qdel() Count: 6 - - Destroy() Cost: 0ms - - Path: /datum/component/ntnet_interface - - qdel() Count: 6 - - Destroy() Cost: 0ms - - Path: /obj/effect/baseturf_helper/lava_land/surface - - qdel() Count: 6 - - Destroy() Cost: 0ms - - Path: /obj/effect/landmark/start/scientist - - qdel() Count: 6 - - Destroy() Cost: 0ms - - Path: /obj/effect/turf_decal/stripes/end - - qdel() Count: 5 - - Destroy() Cost: 0ms - - Path: /obj/item/stack/sheet/mineral/plasma - - qdel() Count: 5 - - Destroy() Cost: 0ms - - Path: /datum/component/footstep - - qdel() Count: 5 - - Destroy() Cost: 0ms - - Path: /obj/machinery/door/airlock/maintenance/abandoned - - qdel() Count: 5 - - Destroy() Cost: 0ms - - Path: /datum/wires/airlock - - qdel() Count: 5 - - Destroy() Cost: 0ms - - Path: /turf/open/floor/mineral/plastitanium - - qdel() Count: 5 - - Destroy() Cost: 0ms - - Path: /obj/effect/landmark/start/station_engineer - - qdel() Count: 5 - - Destroy() Cost: 0ms - - Path: /obj/effect/landmark/secequipment - - qdel() Count: 4 - - Destroy() Cost: 0ms - - Path: /obj/effect/landmark/river_waypoint - - qdel() Count: 4 - - Destroy() Cost: 0ms - - Path: /obj/item/circuitboard/computer/arcade/minesweeper - - qdel() Count: 4 - - Destroy() Cost: 0ms - - Path: /obj/effect/spawner/lootdrop/keg - - qdel() Count: 4 - - Destroy() Cost: 0ms - - Path: /turf/open/floor/circuit/red - - qdel() Count: 4 - - Destroy() Cost: 0ms - - Path: /turf/closed/wall/mineral/plastitanium/nodiagonal - - qdel() Count: 4 - - Destroy() Cost: 0ms - - Path: /turf/closed/wall/mineral/titanium/interior - - qdel() Count: 4 - - Destroy() Cost: 0ms - - Path: /obj/screen/fullscreen/blind - - qdel() Count: 4 - - Destroy() Cost: 0ms - - Path: /datum/progressbar - - qdel() Count: 4 - - Destroy() Cost: 0ms - - Path: /obj/effect/spawner/lootdrop/glowstick - - qdel() Count: 3 - - Destroy() Cost: 0ms - - Path: /obj/effect/spawner/structure/window/reinforced/tinted - - qdel() Count: 3 - - Destroy() Cost: 0ms - - Path: /obj/item/stack/sheet/plasteel - - qdel() Count: 3 - - Destroy() Cost: 0ms - - Path: /turf/closed/mineral/bscrystal/volcanic - - qdel() Count: 3 - - Destroy() Cost: 0ms - - Path: /obj/item/organ/brain - - qdel() Count: 3 - - Destroy() Cost: 0ms - - Path: /obj/item/organ/heart - - qdel() Count: 3 - - Destroy() Cost: 0ms - - Path: /obj/item/organ/liver - - qdel() Count: 3 - - Destroy() Cost: 0ms - - Path: /obj/item/organ/stomach - - qdel() Count: 3 - - Destroy() Cost: 0ms - - Path: /obj/item/organ/appendix - - qdel() Count: 3 - - Destroy() Cost: 0ms - - Path: /obj/item/organ/eyes - - qdel() Count: 3 - - Destroy() Cost: 0ms - - Path: /obj/screen/alert/blind - - qdel() Count: 3 - - Destroy() Cost: 0ms - - Path: /obj/item/organ/ears - - qdel() Count: 3 - - Destroy() Cost: 0ms - - Path: /obj/item/organ/tongue - - qdel() Count: 3 - - Destroy() Cost: 0ms - - Path: /obj/screen/movable/action_button - - qdel() Count: 3 - - Destroy() Cost: 0ms - - Path: /obj/effect/landmark/start/shaft_miner - - qdel() Count: 3 - - Destroy() Cost: 0ms - - Path: /obj/effect/landmark/start/medical_doctor - - qdel() Count: 3 - - Destroy() Cost: 0ms - - Path: /datum/DBQuery - - qdel() Count: 2 - - Destroy() Cost: 0ms - - Path: /obj/effect/landmark/xmastree - - qdel() Count: 2 - - Destroy() Cost: 0ms - - Path: /datum/component/wearertargeting/earprotection - - qdel() Count: 2 - - Destroy() Cost: 0ms - - Path: /datum/callback - - qdel() Count: 2 - - Destroy() Cost: 0ms - - Path: /obj/effect/spawner/lootdrop/grille_or_trash - - qdel() Count: 2 - - Destroy() Cost: 0ms - - Path: /icon - - qdel() Count: 2 - - Destroy() Cost: 0ms - - Path: /obj/effect/mob_spawn/human/corpse/damaged - - qdel() Count: 2 - - Destroy() Cost: 0ms - - Path: /obj/effect/spawner/structure/window/hollow/reinforced/directional - - qdel() Count: 2 - - Destroy() Cost: 0ms - - Path: /obj/item/stack/ore/bluespace_crystal - - qdel() Count: 2 - - Destroy() Cost: 0ms - - Path: /obj/item/stack/sheet/mineral/silver - - qdel() Count: 2 - - Destroy() Cost: 0ms - - Path: /obj/item/stack/sheet/mineral/gold - - qdel() Count: 2 - - Destroy() Cost: 0ms - - Path: /obj/item/clothing/under/color/random - - qdel() Count: 2 - - Destroy() Cost: 0ms - - Path: /obj/effect/baseturf_helper/asteroid/snow - - qdel() Count: 2 - - Destroy() Cost: 0ms - - Path: /datum/gas_mixture - - qdel() Count: 2 - - Destroy() Cost: 0ms - - Path: /datum/wires/radio - - qdel() Count: 2 - - Destroy() Cost: 0ms - - Path: /obj/item/encryptionkey/heads/cmo - - qdel() Count: 2 - - Destroy() Cost: 0ms - - Path: /datum/component/empprotection - - qdel() Count: 2 - - Destroy() Cost: 0ms - - Path: /datum/component/storage/concrete - - qdel() Count: 2 - - Destroy() Cost: 0ms - - Path: /obj/screen/storage - - qdel() Count: 2 - - Destroy() Cost: 0ms - - Path: /obj/screen/close - - qdel() Count: 2 - - Destroy() Cost: 0ms - - Path: /obj/item/stack/medical/bruise_pack - - qdel() Count: 2 - - Destroy() Cost: 0ms - - Path: /obj/item/stack/medical/ointment - - qdel() Count: 2 - - Destroy() Cost: 0ms - - Path: /mob/dead/new_player - - qdel() Count: 2 - - Destroy() Cost: 0ms - - Total Hard Deletes 1 - - Time Spent Hard Deleting: 0ms - - Path: /obj/effect/landmark/start/roboticist - - qdel() Count: 2 - - Destroy() Cost: 0ms - - Path: /obj/effect/landmark/start/cargo_technician - - qdel() Count: 2 - - Destroy() Cost: 0ms - - Path: /obj/effect/landmark/start/geneticist - - qdel() Count: 2 - - Destroy() Cost: 0ms - - Path: /obj/effect/landmark/start/atmospheric_technician - - qdel() Count: 2 - - Destroy() Cost: 0ms - - Path: /obj/effect/landmark/start/botanist - - qdel() Count: 2 - - Destroy() Cost: 0ms - - Path: /obj/effect/landmark/start/chemist - - qdel() Count: 2 - - Destroy() Cost: 0ms - - Path: /obj/effect/landmark/start/lawyer - - qdel() Count: 2 - - Destroy() Cost: 0ms - - Path: /obj/effect/decal/cleanable/blood/old - - qdel() Count: 2 - - Destroy() Cost: 0ms - - Path: /datum/thrownthing - - qdel() Count: 2 - - Destroy() Cost: 0ms - - Path: /obj/structure/grille - - qdel() Count: 2 - - Destroy() Cost: 0ms - - Path: /obj/effect/dummy/lighting_obj/moblight/fire - - qdel() Count: 2 - - Destroy() Cost: 0ms - - Path: /obj/screen/alert/fire - - qdel() Count: 2 - - Destroy() Cost: 0ms - - Path: /datum/mood_event/hot - - qdel() Count: 2 - - Destroy() Cost: 0ms - - Path: /obj/screen/alert/cold - - qdel() Count: 2 - - Destroy() Cost: 0ms - - Path: /obj/item/stack/rods - - qdel() Count: 2 - - Destroy() Cost: 0ms - - Path: /obj/structure/grille/broken - - qdel() Count: 2 - - Destroy() Cost: 0ms - - Path: /obj/structure/cable - - qdel() Count: 2 - - Destroy() Cost: 0ms - - Path: /obj/belly - - qdel() Count: 2 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/grown/banana/bombanana - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/grown/banana/mime - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/grown/banana/bluespace - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/grown/banana/banana_spider_spawnable - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/grown/banana - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/grown/shell/eggy - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/grown/shell/gatfruit - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/grown/shell - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/grown/ambrosia/vulgaris - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/grown/ambrosia/deus - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/grown/ambrosia/gaia - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/grown/ambrosia - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/grown/apple/gold - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/grown/apple - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/grown/soybeans - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/grown/koibeans - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/grown/berries/poison - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/grown/berries/death - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/grown/berries/glow - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/grown/berries - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/grown/cherries - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/grown/bluecherries - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/grown/grapes/green - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/grown/grapes - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/grown/strawberry - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/grown/cannabis/rainbow - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/grown/cannabis/death - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/grown/cannabis/white - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/grown/cannabis/ultimate - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/grown/cannabis - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/grown/wheat - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/grown/oat - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/grown/rice - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/grown/meatwheat - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/grown/chili - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/grown/icepepper - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/grown/ghost_chili - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/grown/citrus/lime - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/grown/citrus/orange - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/grown/citrus/lemon - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/grown/citrus - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/grown/firelemon - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/grown/cocoapod - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/grown/vanillapod - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/grown/bungofruit - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/grown/bungopit - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/grown/corn - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/grown/eggplant - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/grown/poppy/lily - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/grown/poppy/geranium - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/grown/poppy - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/grown/trumpet - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/grown/moonflower - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/grown/bee_balm/honey - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/grown/bee_balm - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/grown/garlic - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/grown/grass/carpet - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/grown/grass - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/grown/kudzupod - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/grown/watermelon - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/grown/holymelon - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/grown/galaxythistle - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/grown/cabbage - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/grown/sugarcane - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/grown/cherry_bomb - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/grown/mushroom/reishi - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/grown/mushroom/amanita - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/grown/mushroom/angel - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/grown/mushroom/libertycap - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/grown/mushroom/plumphelmet - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/grown/mushroom/walkingmushroom - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/grown/mushroom/chanterelle - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/grown/mushroom/jupitercup - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/grown/mushroom/glowshroom/glowcap - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/grown/mushroom/glowshroom/shadowshroom - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/grown/mushroom/glowshroom - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/grown/mushroom - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/grown/nettle/basic - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/grown/nettle/death - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/grown/nettle - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/grown/onion/red - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/grown/onion - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/grown/peach - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/grown/peanut - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/grown/pineapple - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/grown/potato/sweet - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/grown/potato - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/grown/pumpkin - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/grown/blumpkin - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/grown/random - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/grown/carrot - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/grown/parsnip - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/grown/whitebeet - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/grown/redbeet - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/grown/tea/astra - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/grown/tea/catnip - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/grown/tea - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/grown/coffee/robusta - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/grown/coffee - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/grown/tobacco/space - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/grown/tobacco - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/grown/tomato/blood - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/grown/tomato/blue/bluespace - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/grown/tomato/blue - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/grown/tomato/killer - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/grown/tomato - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/grown/ash_flora/shavings - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/grown/ash_flora/mushroom_leaf - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/grown/ash_flora/mushroom_cap - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/grown/ash_flora/mushroom_stem - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/grown/ash_flora/cactus_fruit - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/grown/ash_flora - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/clothing - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/sugarcookie/spookyskull - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/sugarcookie/spookycoffin - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/sugarcookie - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/candyheart - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/customizable/burger - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/customizable/bread - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/customizable/cake - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/customizable/kebab - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/customizable/pasta - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/customizable/pie - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/customizable/pizza - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/customizable/salad/ashsalad - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/customizable/salad - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/customizable/sandwich - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/customizable/soup/ashsoup - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/customizable/soup - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/customizable - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/store/bread/plain - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/store/bread/meat - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/store/bread/xenomeat - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/store/bread/spidermeat - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/store/bread/banana - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/store/bread/tofu - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/store/bread/creamcheese - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/store/bread/mimana - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/store/bread - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/store/cake/plain - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/store/cake/carrot - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/store/cake/brain - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/store/cake/cheese - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/store/cake/orange - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/store/cake/lime - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/store/cake/lemon - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/store/cake/chocolate - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/store/cake/birthday - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/store/cake/apple - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/store/cake/slimecake - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/store/cake/pumpkinspice - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/store/cake/bsvc - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/store/cake/bscc - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/store/cake/holy_cake - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/store/cake/pound_cake - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/store/cake/hardware_cake - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/store/cake/vanilla_cake - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/store/cake/clown_cake - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/store/cake/brioche - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/store/cake - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/store/cheesewheel - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/store - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/breadslice/plain - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/breadslice/meat - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/breadslice/xenomeat - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/breadslice/spidermeat - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/breadslice/banana - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/breadslice/tofu - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/breadslice/creamcheese - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/breadslice/mimana - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/breadslice/custom - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/breadslice - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/garlicbread - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/deepfryholder - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/butteredtoast - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/butterbiscuit - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/butterdog - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/burger/plain - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/burger/human - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/burger/corgi - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/burger/appendix - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/burger/fish - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/burger/tofu - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/burger/roburger - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/burger/roburgerbig - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/burger/xeno - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/burger/bearger - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/burger/clown - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/burger/mime - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/burger/brain - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/burger/ghost - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/burger/red - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/burger/yellow - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/burger/green - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/burger/blue - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/burger/purple - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/burger/black - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/burger/white - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/burger/spell - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/burger/bigbite - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/burger/jelly/slime - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/burger/jelly/cherry - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/burger/jelly - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/burger/superbite - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/burger/fivealarm - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/burger/rat - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/burger/baseball - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/burger/baconburger - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/burger - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/cakeslice/plain - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/cakeslice/carrot - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/cakeslice/brain - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/cakeslice/cheese - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/cakeslice/orange - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/cakeslice/lime - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/cakeslice/lemon - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/cakeslice/chocolate - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/cakeslice/birthday - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/cakeslice/apple - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/cakeslice/custom - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/cakeslice/slimecake - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/cakeslice/bsvc - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/cakeslice/bscc - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/cakeslice/holy_cake_slice - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/cakeslice/pound_cake_slice - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/cakeslice/hardware_cake_slice - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/cakeslice/vanilla_slice - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/cakeslice/clown_slice - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/cakeslice/brioche - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/cakeslice - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/chocolateegg - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/egg/gland - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/egg/blue - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/egg/green - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/egg/mime - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/egg/orange - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/egg/purple - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/egg/rainbow - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/egg/red - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/egg/yellow - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/egg/loaded - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/egg/kiwiEgg - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/egg - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/friedegg - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/boiledegg - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/omelette - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/benedict - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/icecreamsandwich - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/sundae - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/honkdae - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/snowcones/lime - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/snowcones/lemon - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/snowcones/apple - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/snowcones/grape - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/snowcones/orange - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/snowcones/blue - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/snowcones/red - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/snowcones/kiwi - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/snowcones/mix - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/snowcones/fruitsalad - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/snowcones/pineapple - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/snowcones/mime - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/snowcones/clown - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/snowcones/soda - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/snowcones/pwgrmer - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/snowcones/honey - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/snowcones/rainbow - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/snowcones - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/cubancarp - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/carpmeat/imitation - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/carpmeat/aquatic - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/carpmeat - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/fishfingers - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/fishandchips - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/sushi_basic - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/sushi_adv - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/sushi_pro - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/tofu - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/spiderleg - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/cornedbeef - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/bearsteak - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/faggot - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/sausage - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/kebab/human - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/kebab/monkey - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/kebab/tofu - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/kebab/tail - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/kebab/rat/double - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/kebab/rat - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/kebab - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/rawkhinkali - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/khinkali - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/monkeycube - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/enchiladas - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/stewedsoymeat - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/boiledspiderleg - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/spidereggsham - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/sashimi - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/nugget - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/pigblanket - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/cheesewedge - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/watermelonslice - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/candy_corn - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/chocolatebar - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/hugemushroomslice - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/popcorn - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/loadedbakedpotato - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/fries - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/tatortot - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/soydope - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/cheesyfries - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/badrecipe - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/carrotfries - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/candiedapple - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/mint - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/eggwrap - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/beans - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/spidereggs - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/spiderling - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/spiderlollipop - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/tobiko - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/chococoin - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/fudgedice - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/chocoorange - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/eggplantparm - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/tortilla - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/burrito - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/cheesyburrito - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/carneburrito - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/fuegoburrito - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/yakiimo - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/roastparsnip - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/melonfruitbowl - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/nachos - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/cheesynachos - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/cubannachos - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/melonkeg - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/honeybar - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/stuffedlegion - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/powercrepe - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/lollipop/cyborg - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/lollipop - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/gumball/cyborg - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/gumball - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/taco/plain - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/taco - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/branrequests - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/butter - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/onionrings - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/pineappleslice - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/tinychocolate - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/riceball - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/cannedpeaches/maint - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/cannedpeaches - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/donut/chaos - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/donut/jelly/slimejelly - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/donut/jelly/cherryjelly - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/donut/jelly - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/donut/meat - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/donut/semen - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/donut - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/muffin/berry - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/muffin/booberry - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/muffin - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/chawanmushi - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/waffles - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/soylentgreen - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/soylenviridians - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/rofflewaffles - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/cookie - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/donkpocket/warm - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/donkpocket - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/dankpocket - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/fortunecookie - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/poppypretzel - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/plumphelmetbiscuit - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/cracker - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/hotdog - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/meatbun - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/khachapuri - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/chococornet - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/oatmealcookie - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/raisincookie - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/cherrycupcake - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/bluecherrycupcake - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/honeybun - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/pancakes/blueberry - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/pancakes/chocolatechip - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/pancakes - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/pie/plain - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/pie/cream/nostun - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/pie/cream/body - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/pie/cream - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/pie/berryclafoutis - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/pie/bearypie - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/pie/meatpie - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/pie/tofupie - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/pie/amanita_pie - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/pie/plump_pie - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/pie/xemeatpie - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/pie/applepie - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/pie/cherrypie - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/pie/pumpkinpie - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/pie/appletart - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/pie/grapetart - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/pie/mimetart - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/pie/berrytart - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/pie/cocolavatart - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/pie/blumpkinpie - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/pie/dulcedebatata - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/pie/frostypie - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/pie/baklava - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/pie/strawberrypie - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/pie - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/pumpkinpieslice - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/blumpkinpieslice - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/baklavaslice - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/pizza/margherita/robo - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/pizza/margherita - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/pizza/meat - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/pizza/mushroom - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/pizza/vegetable - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/pizza/donkpocket - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/pizza/dank - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/pizza/sassysage - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/pizza/pineapple/anomaly - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/pizza/pineapple - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/pizza/arnold - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/pizza - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/pizzaslice/margherita - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/pizzaslice/meat - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/pizzaslice/mushroom - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/pizzaslice/vegetable - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/pizzaslice/donkpocket - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/pizzaslice/dank - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/pizzaslice/sassysage - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/pizzaslice/pineapple/anomaly - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/pizzaslice/pineapple - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/pizzaslice/arnold - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/pizzaslice/custom - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/pizzaslice/pepperoni - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/pizzaslice - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/salad/aesirsalad - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/salad/herbsalad - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/salad/validsalad - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/salad/oatmeal - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/salad/jungle - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/salad/citrusdelight - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/salad/ricebowl - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/salad/boiledrice - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/salad/ricepudding - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/salad/ricepork - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/salad/eggbowl - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/salad - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/sandwich - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/toastedsandwich - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/grilledcheese - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/jellysandwich/slime - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/jellysandwich/cherry - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/jellysandwich/pbj/cherry - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/jellysandwich/pbj/slime - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/jellysandwich/pbj - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/jellysandwich - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/peanutbutter_sandwich - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/notasandwich - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/jelliedtoast/cherry - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/jelliedtoast/slime - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/jelliedtoast - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/peanut_buttertoast - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/twobread - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/tuna_sandwich - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/soup/wish - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/soup/meatball - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/soup/slime - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/soup/blood - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/soup/wingfangchu - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/soup/vegetable - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/soup/nettle - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/soup/mystery - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/soup/hotchili - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/soup/coldchili - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/soup/monkeysdelight - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/soup/tomato/eyeball - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/soup/tomato - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/soup/milo - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/soup/mushroom - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/soup/beet/red - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/soup/beet - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/soup/spacylibertyduff - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/soup/amanitajelly - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/soup/stew - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/soup/sweetpotato - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/soup/macaco - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/soup/mammi - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/soup - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/spaghetti - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/boiledspaghetti - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/pastatomato - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/copypasta - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/meatballspaghetti - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/spesslaw - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/chowmein - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/beefnoodle - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/butternoodles - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/sea_weed - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/tuna - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/sushie_basic - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/sushie_adv - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/sushie_pro - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/candy - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/sosjerky/healthy - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/sosjerky - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/chips - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/no_raisin/healthy - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/no_raisin - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/spacetwinkie - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/cheesiehonkers - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/syndicake - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/dough - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/flatdough - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/pizzabread - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/doughslice - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/bun - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/cakebatter - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/piedough - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/rawpastrybase - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/pastrybase - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/meat/slab/human/mutant/slime - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/meat/slab/human/mutant/golem/adamantine - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/meat/slab/human/mutant/golem - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/meat/slab/human/mutant/lizard - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/meat/slab/human/mutant/plant - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/meat/slab/human/mutant/shadow - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/meat/slab/human/mutant/fly - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/meat/slab/human/mutant/moth - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/meat/slab/human/mutant/skeleton - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/meat/slab/human/mutant/zombie - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/meat/slab/human/mutant/ipc - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/meat/slab/human/mutant/avian - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/meat/slab/human/mutant/mammal - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/meat/slab/human/mutant - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/meat/slab/human - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/meat/slab/synthmeat - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/meat/slab/meatproduct - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/meat/slab/monkey - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/meat/slab/corgi - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/meat/slab/pug - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/meat/slab/killertomato - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/meat/slab/bear - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/meat/slab/xeno - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/meat/slab/spider - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/meat/slab/goliath - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/meat/slab/meatwheat - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/meat/slab/gorilla - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/meat/slab/gondola - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/meat/slab - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/meat/rawbacon - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/meat/bacon - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/meat/steak/plain/human - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/meat/steak/plain - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/meat/steak/killertomato - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/meat/steak/bear - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/meat/steak/xeno - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/meat/steak/spider - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/meat/steak/goliath - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/meat/steak/gondola - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/meat/rawcutlet/plain/human - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/meat/rawcutlet/plain - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/meat/rawcutlet/killertomato - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/meat/rawcutlet/bear - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/meat/rawcutlet/xeno - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/meat/rawcutlet/spider - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/meat/rawcutlet/gondola - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/meat/rawcutlet - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/meat/cutlet/plain/human - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/meat/cutlet/plain - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/meat/cutlet/killertomato - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/meat/cutlet/bear - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/meat/cutlet/xeno - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/meat/cutlet/spider - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/meat/cutlet/gondola - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/meat/cutlet - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/meat - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/icecream - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/hotcrossbun - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/scotchegg - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/chocolatebunny - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/onion_slice/red - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/onion_slice - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/roasted_peanuts - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/deadmouse - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/organ - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks/deadbanana_spider - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/snacks - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/drinks/soda_cans/canned_laughter - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/drinks/soda_cans/cola - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/drinks/soda_cans/tonic - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/drinks/soda_cans/sodawater - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/drinks/soda_cans/lemon_lime - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/drinks/soda_cans/space_up - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/drinks/soda_cans/starkist - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/drinks/soda_cans/space_mountain_wind - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/drinks/soda_cans/thirteenloko - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/drinks/soda_cans/dr_gibb - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/drinks/soda_cans/pwr_game - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/drinks/soda_cans/shamblers - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/drinks/soda_cans/grey_bull - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/drinks/soda_cans/air - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/drinks/soda_cans - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/drinks/trophy/gold_cup - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/drinks/trophy/silver_cup - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/drinks/trophy/bronze_cup - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/drinks/trophy - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/drinks/coffee/type2 - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/drinks/coffee - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/drinks/ice - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/drinks/mug/tea - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/drinks/mug/coco - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/drinks/mug - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/drinks/dry_ramen - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/drinks/beer/light - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/drinks/beer - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/drinks/ale - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/drinks/sillycup/smallcarton - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/drinks/sillycup - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/drinks/shaker - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/drinks/flask/gold - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/drinks/flask/det - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/drinks/flask/steel - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/drinks/flask - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/drinks/britcup - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/drinks/bottle/gin - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/drinks/bottle/whiskey - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/drinks/bottle/vodka/badminka - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/drinks/bottle/vodka - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/drinks/bottle/tequila - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/drinks/bottle/bottleofnothing - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/drinks/bottle/patron - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/drinks/bottle/rum - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/drinks/bottle/holywater/hell - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/drinks/bottle/holywater - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/drinks/bottle/holyoil/empty - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/drinks/bottle/holyoil - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/drinks/bottle/vermouth - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/drinks/bottle/kahlua - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/drinks/bottle/goldschlager - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/drinks/bottle/cognac - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/drinks/bottle/wine - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/drinks/bottle/absinthe/premium - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/drinks/bottle/absinthe - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/drinks/bottle/lizardwine - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/drinks/bottle/hcider - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/drinks/bottle/grappa - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/drinks/bottle/sake - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/drinks/bottle/fernet - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/drinks/bottle/applejack - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/drinks/bottle/champagne - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/drinks/bottle/blazaam - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/drinks/bottle/trappist - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/drinks/bottle/orangejuice - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/drinks/bottle/cream - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/drinks/bottle/tomatojuice - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/drinks/bottle/limejuice - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/drinks/bottle/menthol - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/drinks/bottle/grenadine - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/drinks/bottle/molotov - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/drinks/bottle - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/drinks/drinkingglass/shotglass - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/drinks/drinkingglass/filled/soda - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/drinks/drinkingglass/filled/cola - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/drinks/drinkingglass/filled/nuka_cola - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/drinks/drinkingglass/filled/syndicatebomb - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/drinks/drinkingglass/filled - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/drinks/drinkingglass - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/drinks - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/urinalcake - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/condiment/enzyme - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/condiment/sugar - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/condiment/saltshaker - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/condiment/peppermill - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/condiment/milk - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/condiment/flour - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/condiment/soymilk - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/condiment/rice - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/condiment/soysauce - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/condiment/mayonnaise - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/condiment/pack/ketchup - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/condiment/pack/hotsauce - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/condiment/pack/astrotame - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/condiment/pack - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/food/condiment - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/seeds/sample/alienweed - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/seeds/sample - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/seeds/ambrosia/deus - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/seeds/ambrosia/gaia - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/seeds/ambrosia - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/seeds/apple/gold - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/seeds/apple - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/seeds/banana/mime - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/seeds/banana/bluespace - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/seeds/banana/exotic_banana - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/seeds/banana - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/seeds/soya/koi - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/seeds/soya - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/seeds/berry/poison - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/seeds/berry/death - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/seeds/berry/glow - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/seeds/berry - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/seeds/cherry/blue - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/seeds/cherry/bomb - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/seeds/cherry - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/seeds/grape/green - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/seeds/grape - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/seeds/strawberry - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/seeds/cannabis/rainbow - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/seeds/cannabis/death - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/seeds/cannabis/white - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/seeds/cannabis/ultimate - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/seeds/wheat/oat - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/seeds/wheat/rice - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/seeds/wheat/meat - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/seeds/wheat - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/seeds/chili/ice - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/seeds/chili/ghost - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/seeds/chili - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/seeds/lime - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/seeds/orange - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/seeds/lemon - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/seeds/firelemon - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/seeds/cocoapod/vanillapod - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/seeds/cocoapod/bungotree - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/seeds/cocoapod - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/seeds/corn/snapcorn - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/seeds/corn - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/seeds/cotton/durathread - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/seeds/cotton - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/seeds/eggplant/eggy - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/seeds/eggplant - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/seeds/poppy/lily/trumpet - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/seeds/poppy/lily - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/seeds/poppy/geranium - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/seeds/poppy - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/seeds/harebell - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/seeds/sunflower/moonflower - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/seeds/sunflower/novaflower - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/seeds/sunflower - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/seeds/bee_balm/honey - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/seeds/bee_balm - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/seeds/grass/carpet - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/seeds/grass - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/seeds/kudzu - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/seeds/watermelon/holy - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/seeds/watermelon - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/seeds/starthistle/T - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/seeds/starthistle - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/seeds/galaxythistle - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/seeds/cabbage - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/seeds/sugarcane - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/seeds/gatfruit - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/seeds/lavaland/cactus - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/seeds/lavaland/polypore - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/seeds/lavaland/porcini - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/seeds/lavaland/inocybe - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/seeds/lavaland/ember - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/seeds/lavaland - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/seeds/reishi - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/seeds/amanita - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/seeds/angel - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/seeds/liberty - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/seeds/plump/walkingmushroom - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/seeds/plump - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/seeds/chanter - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/seeds/chanterelle/jupitercup - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/seeds/chanterelle - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/seeds/glowshroom/glowcap - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/seeds/glowshroom/shadowshroom - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/seeds/glowshroom - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/seeds/nettle/death - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/seeds/nettle - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/seeds/onion/red - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/seeds/onion - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/seeds/peanutseed - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/seeds/pineapple - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/seeds/potato/sweet - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/seeds/potato - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/seeds/pumpkin/blumpkin - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/seeds/pumpkin - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/seeds/random - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/seeds/replicapod - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/seeds/carrot/parsnip - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/seeds/carrot - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/seeds/whitebeet - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/seeds/redbeet - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/seeds/tea/astra - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/seeds/tea/catnip - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/seeds/tea - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/seeds/coffee/robusta - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/seeds/coffee - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/seeds/tobacco/space - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/seeds/tobacco - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/seeds/tomato/blood - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/seeds/tomato/blue/bluespace - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/seeds/tomato/blue - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/seeds/tomato/killer - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/seeds/tomato - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/seeds/tower/steel - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/seeds/tower - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /datum/game_mode/traitor/bros - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /datum/game_mode/traitor/changeling - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /datum/game_mode/traitor/internal_affairs - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /datum/game_mode/traitor - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /datum/game_mode/changeling - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /datum/game_mode/clockwork_cult - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /datum/game_mode/nuclear/clown_ops - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /datum/game_mode/nuclear - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /datum/game_mode/cult - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /datum/game_mode/devil/devil_agents - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /datum/game_mode/devil - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /datum/game_mode/extended/announced - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /datum/game_mode/extended - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /datum/game_mode/meteor - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /datum/game_mode/monkey - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /datum/game_mode/overthrow - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /datum/game_mode/revolution/extended - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /datum/game_mode/revolution/speedy - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /datum/game_mode/revolution - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /datum/game_mode/sandbox - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /datum/game_mode/wizard - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /datum/game_mode/gang - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /datum/map_config - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /datum/holiday/new_year - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /datum/holiday/groundhog - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /datum/holiday/valentines - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /datum/holiday/birthday - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /datum/holiday/random_kindness - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /datum/holiday/leap - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /datum/holiday/pi - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /datum/holiday/no_this_is_patrick - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /datum/holiday/april_fools - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /datum/holiday/fourtwenty - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /datum/holiday/tea - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /datum/holiday/earth - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /datum/holiday/labor - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /datum/holiday/firefighter - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /datum/holiday/bee - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /datum/holiday/summersolstice - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /datum/holiday/doctor - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /datum/holiday/UFO - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /datum/holiday/USA - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /datum/holiday/writer - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /datum/holiday/friendship - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /datum/holiday/beer - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /datum/holiday/pirate - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /datum/holiday/programmers - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /datum/holiday/questions - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /datum/holiday/smile - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /datum/holiday/boss - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /datum/holiday/halloween - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /datum/holiday/vegan - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /datum/holiday/kindness - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /datum/holiday/flowers - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /datum/holiday/hello - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /datum/holiday/human_rights - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /datum/holiday/monkey - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /datum/holiday/thanksgiving/canada - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /datum/holiday/thanksgiving - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /datum/holiday/columbus - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /datum/holiday/mother - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /datum/holiday/father - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /datum/holiday/moth - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /datum/holiday/ramadan/end - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /datum/holiday/ramadan - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /datum/holiday/doomsday - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /datum/holiday/xmas - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /datum/holiday/boxing - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /datum/holiday/friday_thirteenth - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /datum/holiday/easter - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /datum/species/human/felinid - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /datum/species/human - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /datum/species/jelly/roundstartslime - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /datum/species/lizard - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /datum/species/plasmaman - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /datum/species/mammal - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /datum/species/avian - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /datum/species/aquatic - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /datum/species/xeno - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /datum/species/ipc - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/effect/landmark/xmastree/rdrod - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/effect/spawner/lootdrop/aimodule_harmless - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/effect/spawner/lootdrop/aimodule_neutral - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/effect/spawner/lootdrop/aimodule_harmful - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/effect/spawner/lootdrop/techstorage/AI - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/effect/spawner/lootdrop/techstorage/rnd - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/effect/spawner/lootdrop/techstorage/service - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/effect/spawner/lootdrop/techstorage/tcomms - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/effect/spawner/lootdrop/techstorage/command - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/effect/spawner/lootdrop/techstorage/RnD_secure - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/effect/spawner/lootdrop/techstorage/medical - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/effect/spawner/lootdrop/techstorage/security - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/effect/spawner/lootdrop/techstorage/engineering - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/stack/ore/silver - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/stack/sheet/metal - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/effect/turf_decal/stripes/asteroid/line - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/effect/mob_spawn/human/corpse/assistant - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /turf/closed/mineral/diamond/volcanic - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/machinery/door/airlock/engineering/abandoned - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /datum/wires/airlock/engineering - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/effect/baseturf_helper/space - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/book/manual/random - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /turf/closed/wall/mineral/titanium/nodiagonal - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/docking_port/stationary/public_mining_dock - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /turf/closed/wall - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/storage/backpack/medic - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/pda/heads/cmo - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/cartridge/cmo - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/pen - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/stack/medical/plaster_gauze - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/reagent_containers/hypospray/medipen - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /datum/reagent/medicine/epinephrine - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/healthanalyzer - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /datum/hud - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/screen/movable/action_button/hide_toggle - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/screen/plane_master/floor - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/screen/plane_master/game_world - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/screen/plane_master/lighting - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/screen/plane_master/parallax - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/screen/plane_master/parallax_white - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/screen/plane_master/camera_static - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/effect/landmark/start/depsec/medical - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/effect/landmark/start/cyborg - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/effect/landmark/start/janitor - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/effect/landmark/start/cook - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/effect/landmark/start/chaplain - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/effect/landmark/start/head_of_security - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/effect/landmark/start/head_of_personnel - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/effect/landmark/start/virologist - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/effect/landmark/start/quartermaster - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/effect/landmark/start/mime - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/effect/landmark/start/captain - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/effect/landmark/start/research_director - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/effect/landmark/start/depsec/engineering - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/effect/landmark/start/chief_engineer - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/effect/landmark/start/clown - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/effect/landmark/start/detective - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/effect/landmark/start/depsec/science - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/effect/landmark/start/librarian - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/effect/landmark/start/chief_medical_officer - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/effect/landmark/start/warden - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/effect/landmark/start/depsec/supply - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /datum/controller - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/screen/splash - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/docking_port/stationary/transit - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/screen/fullscreen/flash - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /datum/status_effect/incapacitating/unconscious - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/machinery/light - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /datum/mood_event/jittery - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/structure/table/glass - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/machinery/light_switch - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/screen/fullscreen/crit/vision - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/screen/alert/lowpressure - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/item/stack/ore/glass - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /obj/effect/meteor/dust - - qdel() Count: 1 - - Destroy() Cost: 0ms - - Path: /datum/action/innate/augury - - qdel() Count: 1 - - Destroy() Cost: 0ms diff --git a/data/logs/2019/12/03/round-23.56.34/runtime.log b/data/logs/2019/12/03/round-23.56.34/runtime.log deleted file mode 100644 index 1865d5d5..00000000 --- a/data/logs/2019/12/03/round-23.56.34/runtime.log +++ /dev/null @@ -1,133 +0,0 @@ -[2019-12-04 04:56:34.968] Starting up round ID . - - ------------------------- -[2019-12-04 04:56:34.972] Running /tg/ revision: 2019-12-04 - - origin/master: 95e35dc714ec059af1ba4f6355f717d810b87fa6 - - HEAD: 2cbcd7d49519db45ac762495b8c325f79919db0e -[2019-12-04 04:56:36.096] Initialized Title Screen subsystem within 0 seconds! -[2019-12-04 04:56:36.099] Initialized Database subsystem within 0 seconds! -[2019-12-04 04:56:36.102] Initialized Blackbox subsystem within 0 seconds! -[2019-12-04 04:56:36.104] Initialized Server Tasks subsystem within 0 seconds! -[2019-12-04 04:56:36.106] Initialized Input subsystem within 0 seconds! -[2019-12-04 04:56:36.108] Initialized Vis contents overlays subsystem within 0 seconds! -[2019-12-04 04:56:36.129] Initialized Research subsystem within 0 seconds! -[2019-12-04 04:56:36.135] Initialized Events subsystem within 0 seconds! -[2019-12-04 04:56:36.141] Initialized Jobs subsystem within 0 seconds! -[2019-12-04 04:56:36.143] Initialized Quirks subsystem within 0 seconds! -[2019-12-04 04:56:36.153] Initialized Ticker subsystem within 0 seconds! -[2019-12-04 04:56:36.156] Loading Box Station... -[2019-12-04 04:56:41.365] Loaded Station in 5.2s! -[2019-12-04 04:56:42.518] Loaded Lavaland in 1.1s! -[2019-12-04 04:56:43.438] Ruin loader finished with 0 left to spend. -[2019-12-04 04:56:48.502] Failed to place Syndicate Ambush ruin. -[2019-12-04 04:56:48.721] Ruin loader finished with 0 left to spend. -[2019-12-04 04:56:48.960] Initialized Mapping subsystem within 12.8 seconds! -[2019-12-04 04:56:48.964] Initialized Networks subsystem within 0 seconds! -[2019-12-04 04:56:52.696] ### MAP WARNING, the airlock cyclelink helper at Brig (119, 168, 2) tried to set Brig cyclelinkeddir, but it's already set! -[2019-12-04 04:56:52.738] ### MAP WARNING, the airlock cyclelink helper at Brig (119, 165, 2) tried to set Brig cyclelinkeddir, but it's already set! -[2019-12-04 04:57:07.080] Initialized Atoms subsystem within 18.1 seconds! -[2019-12-04 04:57:07.130] Initialized Language subsystem within 0 seconds! -[2019-12-04 04:57:07.284] Initialized Machines subsystem within 0.1 seconds! -[2019-12-04 04:57:07.321] Initialized Circuit subsystem within 0.1 seconds! -[2019-12-04 04:57:07.324] Initialized Disease subsystem within 0 seconds! -[2019-12-04 04:57:07.325] Initialized Jukeboxes subsystem within 0 seconds! -[2019-12-04 04:57:07.328] Initialized Medals subsystem within 0 seconds! -[2019-12-04 04:57:07.329] Initialized Processing subsystem within 0 seconds! -[2019-12-04 04:57:07.330] Initialized Night Shift subsystem within 0 seconds! -[2019-12-04 04:57:07.332] Initialized Parallax subsystem within 0 seconds! -[2019-12-04 04:57:07.526] Initialized Traumas subsystem within 0.2 seconds! -[2019-12-04 04:57:07.528] Initialized Weather subsystem within 0 seconds! -[2019-12-04 04:57:09.561] ## WARNING: There are 83 active turfs at roundstart, this is a mapping error caused by a difference of the air between the adjacent turfs. You can see its coordinates using "Mapping -> Show roundstart AT list" verb (debug verbs required) -[2019-12-04 04:57:10.236] ## WARNING: HEY! LISTEN! 0.7 seconds were wasted processing 83 turf(s) (connected to 20941 other turfs) with atmos differences at round start. -[2019-12-04 04:57:10.470] ## WARNING: build_pipeline(): /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden added to a pipenet while still having one. (pipes leading to the same spot stacking in one turf) Nearby: (159, 121, 2) -[2019-12-04 04:57:10.472] ## WARNING: build_pipeline(): /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden added to a pipenet while still having one. (pipes leading to the same spot stacking in one turf) Nearby: (157, 121, 2) -[2019-12-04 04:57:10.473] ## WARNING: build_pipeline(): /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden added to a pipenet while still having one. (pipes leading to the same spot stacking in one turf) Nearby: (160, 121, 2) -[2019-12-04 04:57:10.474] ## WARNING: build_pipeline(): /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden added to a pipenet while still having one. (pipes leading to the same spot stacking in one turf) Nearby: (158, 121, 2) -[2019-12-04 04:57:10.476] ## WARNING: build_pipeline(): /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden added to a pipenet while still having one. (pipes leading to the same spot stacking in one turf) Nearby: (156, 121, 2) -[2019-12-04 04:57:10.477] ## WARNING: build_pipeline(): /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden added to a pipenet while still having one. (pipes leading to the same spot stacking in one turf) Nearby: (161, 121, 2) -[2019-12-04 04:57:10.478] ## WARNING: build_pipeline(): /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden added to a pipenet while still having one. (pipes leading to the same spot stacking in one turf) Nearby: (155, 121, 2) -[2019-12-04 04:57:10.480] ## WARNING: build_pipeline(): /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden added to a pipenet while still having one. (pipes leading to the same spot stacking in one turf) Nearby: (162, 121, 2) -[2019-12-04 04:57:10.482] ## WARNING: build_pipeline(): /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden added to a pipenet while still having one. (pipes leading to the same spot stacking in one turf) Nearby: (154, 121, 2) -[2019-12-04 04:57:10.485] ## WARNING: build_pipeline(): /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden added to a pipenet while still having one. (pipes leading to the same spot stacking in one turf) Nearby: (163, 121, 2) -[2019-12-04 04:57:10.487] ## WARNING: build_pipeline(): further messages about pipenets will be suppressed -[2019-12-04 04:57:10.510] Initialized Atmospherics subsystem within 3 seconds! -[2019-12-04 04:57:10.512] Initialized Atmospherics - Turfs subsystem within 0 seconds! -[2019-12-04 04:57:12.464] Initialized Assets subsystem within 1.9 seconds! -[2019-12-04 04:57:15.705] Initialized Icon Smoothing subsystem within 3.3 seconds! -[2019-12-04 04:57:16.304] Initialized Overlay subsystem within 0.6 seconds! -[2019-12-04 04:57:16.305] Initialized XKeyScore subsystem within 0 seconds! -[2019-12-04 04:57:16.308] Initialized Sticky Ban subsystem within 0 seconds! -[2019-12-04 04:57:22.552] Initialized Lighting subsystem within 6.2 seconds! -[2019-12-04 04:57:24.145] Initialized Shuttle subsystem within 1.6 seconds! -[2019-12-04 04:57:24.190] Initialized Minor Mapping subsystem within 0 seconds! -[2019-12-04 04:57:24.193] Initialized Pathfinder subsystem within 0 seconds! -[2019-12-04 04:57:24.230] Initialized Persistence subsystem within 0.1 seconds! -[2019-12-04 04:57:24.248] Initializations complete within 48.2 seconds! -[2019-12-04 04:57:26.626] Game start took 0.8s -[2019-12-04 05:12:34.529] Shutting down Persistence subsystem... -[2019-12-04 05:12:34.531] Shutting down Pathfinder subsystem... -[2019-12-04 05:12:34.533] Shutting down Minor Mapping subsystem... -[2019-12-04 05:12:34.535] Shutting down Shuttle subsystem... -[2019-12-04 05:12:34.537] Shutting down Lighting subsystem... -[2019-12-04 05:12:34.541] Shutting down XKeyScore subsystem... -[2019-12-04 05:12:34.542] Shutting down Sticky Ban subsystem... -[2019-12-04 05:12:34.544] Shutting down Overlay subsystem... -[2019-12-04 05:12:34.569] Shutting down Icon Smoothing subsystem... -[2019-12-04 05:12:34.572] Shutting down Assets subsystem... -[2019-12-04 05:12:34.574] Shutting down Atmospherics - Turfs subsystem... -[2019-12-04 05:12:34.576] Shutting down Atmospherics subsystem... -[2019-12-04 05:12:34.578] Shutting down Wet floors subsystem... -[2019-12-04 05:12:34.579] Shutting down Weather subsystem... -[2019-12-04 05:12:34.581] Shutting down Vote subsystem... -[2019-12-04 05:12:34.583] Shutting down Traumas subsystem... -[2019-12-04 05:12:34.586] Shutting down Time Tracking subsystem... -[2019-12-04 05:12:34.590] Shutting down Throwing subsystem... -[2019-12-04 05:12:34.591] Shutting down tgui subsystem... -[2019-12-04 05:12:34.593] Shutting down Sun subsystem... -[2019-12-04 05:12:34.595] Shutting down Space Drift subsystem... -[2019-12-04 05:12:34.596] Shutting down Radio subsystem... -[2019-12-04 05:12:34.598] Shutting down Radiation subsystem... -[2019-12-04 05:12:34.599] Shutting down Projectiles subsystem... -[2019-12-04 05:12:34.601] Shutting down Processing subsystem... -[2019-12-04 05:12:34.602] Shutting down Processing subsystem... -[2019-12-04 05:12:34.604] Shutting down Ping subsystem... -[2019-12-04 05:12:34.607] Shutting down Parallax subsystem... -[2019-12-04 05:12:34.608] Shutting down pAI subsystem... -[2019-12-04 05:12:34.610] Shutting down Objects subsystem... -[2019-12-04 05:12:34.612] Shutting down NPC Pool subsystem... -[2019-12-04 05:12:34.614] Shutting down Night Shift subsystem... -[2019-12-04 05:12:34.615] Shutting down Nanites subsystem... -[2019-12-04 05:12:34.617] Shutting down Mood subsystem... -[2019-12-04 05:12:34.619] Shutting down Mobs subsystem... -[2019-12-04 05:12:34.621] Shutting down Medals subsystem... -[2019-12-04 05:12:34.623] Shutting down Jukeboxes subsystem... -[2019-12-04 05:12:34.626] Shutting down Idling NPC Pool subsystem... -[2019-12-04 05:12:34.627] Shutting down Fire Burning subsystem... -[2019-12-04 05:12:34.629] Shutting down Fields subsystem... -[2019-12-04 05:12:34.630] Shutting down Fast Processing subsystem... -[2019-12-04 05:12:34.632] Shutting down Disease subsystem... -[2019-12-04 05:12:34.633] Shutting down Datum Component System subsystem... -[2019-12-04 05:12:34.635] Shutting down Communications subsystem... -[2019-12-04 05:12:34.637] Shutting down Bellies subsystem... -[2019-12-04 05:12:34.640] Shutting down Augury subsystem... -[2019-12-04 05:12:34.641] Shutting down Acid subsystem... -[2019-12-04 05:12:34.643] Shutting down Timer subsystem... -[2019-12-04 05:12:34.645] Shutting down Circuit subsystem... -[2019-12-04 05:12:34.646] Shutting down Machines subsystem... -[2019-12-04 05:12:34.648] Shutting down Language subsystem... -[2019-12-04 05:12:34.650] Shutting down Atoms subsystem... -[2019-12-04 05:12:34.747] Shutting down Networks subsystem... -[2019-12-04 05:12:34.750] Shutting down Mapping subsystem... -[2019-12-04 05:12:34.751] Shutting down Ticker subsystem... -[2019-12-04 05:12:34.753] Shutting down Quirks subsystem... -[2019-12-04 05:12:34.757] Shutting down Jobs subsystem... -[2019-12-04 05:12:34.758] Shutting down Events subsystem... -[2019-12-04 05:12:34.761] Shutting down Research subsystem... -[2019-12-04 05:12:34.762] Shutting down Vis contents overlays subsystem... -[2019-12-04 05:12:34.763] Shutting down Input subsystem... -[2019-12-04 05:12:34.766] Shutting down Server Tasks subsystem... -[2019-12-04 05:12:34.767] Shutting down Blackbox subsystem... -[2019-12-04 05:12:34.769] Shutting down Database subsystem... -[2019-12-04 05:12:34.770] Shutting down Garbage subsystem... -[2019-12-04 05:12:34.861] Shutting down Title Screen subsystem... -[2019-12-04 05:12:34.863] Shutdown complete -[2019-12-04 05:12:34.865] World rebooted at 00:12:34 diff --git a/data/logs/2019/12/03/round-23.56.34/singulo.html b/data/logs/2019/12/03/round-23.56.34/singulo.html deleted file mode 100644 index f29b24cd..00000000 --- a/data/logs/2019/12/03/round-23.56.34/singulo.html +++ /dev/null @@ -1,10 +0,0 @@ -23:57:27 [0x200ae0a] (102,125,3) || the backup power storage unit lost power and turned off
-23:57:27 [0x200adc2] (101,130,3) || the power storage unit lost power and turned off
-23:57:27 [0x200adb4] (101,134,3) || the power storage unit lost power and turned off
-23:57:27 [0x20093fd] (196,79,2) || the power storage unit lost power and turned off
-23:57:27 [0x20090a2] (77,82,2) || the power storage unit lost power and turned off
-23:57:27 [0x2005b2b] (186,151,2) || the power storage unit lost power and turned off
-23:57:27 [0x2005b21] (180,151,2) || the power storage unit lost power and turned off
-23:57:27 [0x200545f] (162,161,2) || the power storage unit lost power and turned off
-23:57:27 [0x20052ec] (65,164,2) || the power storage unit lost power and turned off
-23:57:36 [0x2009056] (151,83,2) || the power storage unit lost power and turned off
diff --git a/data/logs/2019/12/03/round-23.56.34/supermatter.html b/data/logs/2019/12/03/round-23.56.34/supermatter.html deleted file mode 100644 index fa0943e9..00000000 --- a/data/logs/2019/12/03/round-23.56.34/supermatter.html +++ /dev/null @@ -1 +0,0 @@ -23:56:55 [0x2009ada] (113,66,2) || the supermatter crystal has been created.
diff --git a/data/logs/2019/12/03/round-23.56.34/telecomms.log b/data/logs/2019/12/03/round-23.56.34/telecomms.log deleted file mode 100644 index b8a201b1..00000000 --- a/data/logs/2019/12/03/round-23.56.34/telecomms.log +++ /dev/null @@ -1,37 +0,0 @@ -[2019-12-04 04:56:34.964] Starting up round ID . - - ------------------------- -[2019-12-04 04:57:33.517] TCOMMS: The �Automated Announcement System [Medical] (spans: robot ) "Alessandra Joghs, Chief Medical Officer, is the department head." (language: Galactic Common) (Telecomms Control Room (107, 93, 2)) -[2019-12-04 04:57:54.929] TCOMMS: *no key*/(Poly) [Engineering] (spans: ) "Check the crystal, you chucklefucks!" (language: Galactic Common) (Chief Engineer's Office (117, 82, 2)) -[2019-12-04 04:58:02.960] TCOMMS: *no key*/(Poly) [Engineering] (spans: ) "Wire the solars, you lazy bums!" (language: Galactic Common) (Chief Engineer's Office (118, 82, 2)) -[2019-12-04 04:58:12.932] TCOMMS: *no key*/(Poly) [Engineering] (spans: ) "WHO TOOK THE DAMN HARDSUITS?" (language: Galactic Common) (Chief Engineer's Office (118, 80, 2)) -[2019-12-04 04:58:20.935] TCOMMS: *no key*/(Poly) [Engineering] (spans: ) "WHO TOOK THE DAMN HARDSUITS?" (language: Galactic Common) (Chief Engineer's Office (117, 80, 2)) -[2019-12-04 04:58:22.933] TCOMMS: *no key*/(Poly) [Engineering] (spans: ) "WHO TOOK THE DAMN HARDSUITS?" (language: Galactic Common) (Chief Engineer's Office (117, 80, 2)) -[2019-12-04 04:58:52.929] TCOMMS: *no key*/(Poly) [Engineering] (spans: ) "WHO TOOK THE DAMN HARDSUITS?" (language: Galactic Common) (Chief Engineer's Office (115, 79, 2)) -[2019-12-04 04:59:18.931] TCOMMS: *no key*/(Poly) [Engineering] (spans: ) "OH GOD ITS ABOUT TO DELAMINATE CALL THE SHUTTLE" (language: Galactic Common) (Chief Engineer's Office (115, 79, 2)) -[2019-12-04 04:59:34.341] TCOMMS: The cloning pod [Medical] (spans: robot ) "The cloning cycle is complete." (language: Galactic Common) (Genetics Lab (155, 113, 2)) -[2019-12-04 05:01:16.931] TCOMMS: *no key*/(Poly) [Engineering] (spans: ) "Check the crystal, you chucklefucks!" (language: Galactic Common) (Chief Engineer's Office (115, 79, 2)) -[2019-12-04 05:01:36.937] TCOMMS: *no key*/(Poly) [Engineering] (spans: ) "Check the crystal, you chucklefucks!" (language: Galactic Common) (Chief Engineer's Office (115, 79, 2)) -[2019-12-04 05:01:46.938] TCOMMS: *no key*/(Poly) [Engineering] (spans: ) "Wire the solars, you lazy bums!" (language: Galactic Common) (Chief Engineer's Office (115, 79, 2)) -[2019-12-04 05:02:14.931] TCOMMS: *no key*/(Poly) [Engineering] (spans: ) "OH GOD ITS ABOUT TO DELAMINATE CALL THE SHUTTLE" (language: Galactic Common) (Chief Engineer's Office (117, 81, 2)) -[2019-12-04 05:02:16.928] TCOMMS: *no key*/(Poly) [Engineering] (spans: ) "OH GOD ITS ABOUT TO DELAMINATE CALL THE SHUTTLE" (language: Galactic Common) (Chief Engineer's Office (117, 81, 2)) -[2019-12-04 05:02:22.932] TCOMMS: *no key*/(Poly) [Engineering] (spans: ) "Wire the solars, you lazy bums!" (language: Galactic Common) (Chief Engineer's Office (115, 79, 2)) -[2019-12-04 05:02:28.929] TCOMMS: *no key*/(Poly) [Engineering] (spans: ) "Wire the solars, you lazy bums!" (language: Galactic Common) (Chief Engineer's Office (115, 79, 2)) -[2019-12-04 05:02:44.929] TCOMMS: *no key*/(Poly) [Engineering] (spans: ) "Wire the solars, you lazy bums!" (language: Galactic Common) (Chief Engineer's Office (115, 79, 2)) -[2019-12-04 05:02:46.930] TCOMMS: *no key*/(Poly) [Engineering] (spans: ) "OH GOD ITS ABOUT TO DELAMINATE CALL THE SHUTTLE" (language: Galactic Common) (Chief Engineer's Office (115, 79, 2)) -[2019-12-04 05:02:54.930] TCOMMS: *no key*/(Poly) [Engineering] (spans: ) "OH GOD ITS ABOUT TO DELAMINATE CALL THE SHUTTLE" (language: Galactic Common) (Chief Engineer's Office (115, 79, 2)) -[2019-12-04 05:03:18.932] TCOMMS: *no key*/(Poly) [Engineering] (spans: ) "Check the crystal, you chucklefucks!" (language: Galactic Common) (Chief Engineer's Office (116, 80, 2)) -[2019-12-04 05:04:34.930] TCOMMS: *no key*/(Poly) [Engineering] (spans: ) "Poly wanna cracker!" (language: Galactic Common) (Chief Engineer's Office (118, 80, 2)) -[2019-12-04 05:04:52.928] TCOMMS: *no key*/(Poly) [Engineering] (spans: ) "I have lived many lives!" (language: Galactic Common) (Chief Engineer's Office (118, 79, 2)) -[2019-12-04 05:05:08.930] TCOMMS: *no key*/(Poly) [Engineering] (spans: ) "Poly wanna cracker!" (language: Galactic Common) (Chief Engineer's Office (118, 79, 2)) -[2019-12-04 05:07:54.940] TCOMMS: *no key*/(Poly) [Engineering] (spans: ) "OH GOD ITS ABOUT TO DELAMINATE CALL THE SHUTTLE" (language: Galactic Common) (Chief Engineer's Office (116, 79, 2)) -[2019-12-04 05:07:56.957] TCOMMS: *no key*/(Poly) [Engineering] (spans: ) "OH GOD ITS ABOUT TO DELAMINATE CALL THE SHUTTLE" (language: Galactic Common) (Chief Engineer's Office (116, 79, 2)) -[2019-12-04 05:07:58.942] TCOMMS: *no key*/(Poly) [Engineering] (spans: ) "OH GOD ITS ABOUT TO DELAMINATE CALL THE SHUTTLE" (language: Galactic Common) (Chief Engineer's Office (116, 79, 2)) -[2019-12-04 05:09:34.942] TCOMMS: *no key*/(Poly) [Engineering] (spans: ) "Wire the solars, you lazy bums!" (language: Galactic Common) (Chief Engineer's Office (115, 79, 2)) -[2019-12-04 05:10:14.942] TCOMMS: *no key*/(Poly) [Engineering] (spans: ) "Check the crystal, you chucklefucks!" (language: Galactic Common) (Chief Engineer's Office (115, 79, 2)) -[2019-12-04 05:10:20.945] TCOMMS: *no key*/(Poly) [Engineering] (spans: ) "OH GOD ITS ABOUT TO DELAMINATE CALL THE SHUTTLE" (language: Galactic Common) (Chief Engineer's Office (116, 79, 2)) -[2019-12-04 05:10:36.940] TCOMMS: *no key*/(Poly) [Engineering] (spans: ) "Check the crystal, you chucklefucks!" (language: Galactic Common) (Chief Engineer's Office (115, 79, 2)) -[2019-12-04 05:10:58.942] TCOMMS: *no key*/(Poly) [Engineering] (spans: ) "OH GOD ITS ABOUT TO DELAMINATE CALL THE SHUTTLE" (language: Galactic Common) (Chief Engineer's Office (115, 79, 2)) -[2019-12-04 05:11:08.943] TCOMMS: *no key*/(Poly) [Engineering] (spans: ) "OH GOD ITS ABOUT TO DELAMINATE CALL THE SHUTTLE" (language: Galactic Common) (Chief Engineer's Office (115, 79, 2)) -[2019-12-04 05:11:18.940] TCOMMS: *no key*/(Poly) [Engineering] (spans: ) "Check the crystal, you chucklefucks!" (language: Galactic Common) (Chief Engineer's Office (115, 79, 2)) -[2019-12-04 05:11:44.941] TCOMMS: *no key*/(Poly) [Engineering] (spans: ) "I have lived many lives!" (language: Galactic Common) (Chief Engineer's Office (117, 82, 2)) -[2019-12-04 05:12:18.944] TCOMMS: *no key*/(Poly) [Engineering] (spans: ) "I have lived many lives!" (language: Galactic Common) (Chief Engineer's Office (115, 79, 2)) diff --git a/data/logs/2019/12/04/round-00.12.46/attack.log b/data/logs/2019/12/04/round-00.12.46/attack.log deleted file mode 100644 index 2139c356..00000000 --- a/data/logs/2019/12/04/round-00.12.46/attack.log +++ /dev/null @@ -1,4 +0,0 @@ -[2019-12-04 05:12:46.878] Starting up round ID . - - ------------------------- -[2019-12-04 05:21:09.602] ATTACK: BigFatAnimeTiddies/(Alessandra Joghs) has grabbed *no key*/(monkey (632)) passive grab (NEWHP: 100) (Genetics Lab (160, 118, 2)) -[2019-12-04 05:21:28.832] ATTACK: BigFatAnimeTiddies/(Alessandra Joghs) has grabbed *no key*/(Kira Agg) passive grab (NEWHP: 100) (Genetics Lab (158, 116, 2)) diff --git a/data/logs/2019/12/04/round-00.12.46/cargo.html b/data/logs/2019/12/04/round-00.12.46/cargo.html deleted file mode 100644 index 6d8dcf0f..00000000 --- a/data/logs/2019/12/04/round-00.12.46/cargo.html +++ /dev/null @@ -1 +0,0 @@ -00:13:27 [0x2025489] (152,108,1) || the supply shuttle Shuttle contents sold for 0 credits. Contents: /list Message: none.
diff --git a/data/logs/2019/12/04/round-00.12.46/cloning.log b/data/logs/2019/12/04/round-00.12.46/cloning.log deleted file mode 100644 index c0a80f04..00000000 --- a/data/logs/2019/12/04/round-00.12.46/cloning.log +++ /dev/null @@ -1,36 +0,0 @@ -[2019-12-04 05:16:18.078] CLONING: Autoprocess added the record of BigFatAnimeTiddies/(Alessandra Joghs) to the cloning console at Genetics Lab (154, 113, 2). -[2019-12-04 05:16:20.062] CLONING: Autoprocess added the record of BigFatAnimeTiddies/(Alessandra Joghs) to the cloning console at Genetics Lab (154, 113, 2). -[2019-12-04 05:16:22.078] CLONING: Autoprocess added the record of BigFatAnimeTiddies/(Alessandra Joghs) to the cloning console at Genetics Lab (154, 113, 2). -[2019-12-04 05:16:24.080] CLONING: Autoprocess added the record of BigFatAnimeTiddies/(Alessandra Joghs) to the cloning console at Genetics Lab (154, 113, 2). -[2019-12-04 05:16:26.076] CLONING: Autoprocess added the record of BigFatAnimeTiddies/(Alessandra Joghs) to the cloning console at Genetics Lab (154, 113, 2). -[2019-12-04 05:16:28.062] CLONING: Autoprocess added the record of BigFatAnimeTiddies/(Alessandra Joghs) to the cloning console at Genetics Lab (154, 113, 2). -[2019-12-04 05:16:30.078] CLONING: Autoprocess added the record of BigFatAnimeTiddies/(Alessandra Joghs) to the cloning console at Genetics Lab (154, 113, 2). -[2019-12-04 05:16:32.075] CLONING: Autoprocess added the record of BigFatAnimeTiddies/(Alessandra Joghs) to the cloning console at Genetics Lab (154, 113, 2). -[2019-12-04 05:16:34.063] CLONING: Autoprocess added the record of BigFatAnimeTiddies/(Alessandra Joghs) to the cloning console at Genetics Lab (154, 113, 2). -[2019-12-04 05:16:36.076] CLONING: Autoprocess added the record of BigFatAnimeTiddies/(Alessandra Joghs) to the cloning console at Genetics Lab (154, 113, 2). -[2019-12-04 05:16:38.075] CLONING: Autoprocess added the record of BigFatAnimeTiddies/(Alessandra Joghs) to the cloning console at Genetics Lab (154, 113, 2). -[2019-12-04 05:16:40.077] CLONING: Autoprocess added the record of BigFatAnimeTiddies/(Alessandra Joghs) to the cloning console at Genetics Lab (154, 113, 2). -[2019-12-04 05:16:42.077] CLONING: Autoprocess added the record of BigFatAnimeTiddies/(Alessandra Joghs) to the cloning console at Genetics Lab (154, 113, 2). -[2019-12-04 05:16:44.076] CLONING: Autoprocess added the record of BigFatAnimeTiddies/(Alessandra Joghs) to the cloning console at Genetics Lab (154, 113, 2). -[2019-12-04 05:16:46.076] CLONING: Autoprocess added the record of BigFatAnimeTiddies/(Alessandra Joghs) to the cloning console at Genetics Lab (154, 113, 2). -[2019-12-04 05:16:48.063] CLONING: Autoprocess added the record of BigFatAnimeTiddies/(Alessandra Joghs) to the cloning console at Genetics Lab (154, 113, 2). -[2019-12-04 05:16:50.076] CLONING: Autoprocess added the record of BigFatAnimeTiddies/(Alessandra Joghs) to the cloning console at Genetics Lab (154, 113, 2). -[2019-12-04 05:16:52.077] CLONING: Autoprocess added the record of BigFatAnimeTiddies/(Alessandra Joghs) to the cloning console at Genetics Lab (154, 113, 2). -[2019-12-04 05:16:54.062] CLONING: Autoprocess added the record of BigFatAnimeTiddies/(Alessandra Joghs) to the cloning console at Genetics Lab (154, 113, 2). -[2019-12-04 05:16:56.062] CLONING: Autoprocess added the record of BigFatAnimeTiddies/(Alessandra Joghs) to the cloning console at Genetics Lab (154, 113, 2). -[2019-12-04 05:16:58.080] CLONING: Autoprocess added the record of BigFatAnimeTiddies/(Alessandra Joghs) to the cloning console at Genetics Lab (154, 113, 2). -[2019-12-04 05:17:00.077] CLONING: Autoprocess added the record of BigFatAnimeTiddies/(Alessandra Joghs) to the cloning console at Genetics Lab (154, 113, 2). -[2019-12-04 05:17:02.077] CLONING: Autoprocess added the record of BigFatAnimeTiddies/(Alessandra Joghs) to the cloning console at Genetics Lab (154, 113, 2). -[2019-12-04 05:17:04.062] CLONING: Autoprocess added the record of BigFatAnimeTiddies/(Alessandra Joghs) to the cloning console at Genetics Lab (154, 113, 2). -[2019-12-04 05:17:06.076] CLONING: Autoprocess added the record of BigFatAnimeTiddies/(Alessandra Joghs) to the cloning console at Genetics Lab (154, 113, 2). -[2019-12-04 05:17:08.076] CLONING: Autoprocess added the record of BigFatAnimeTiddies/(Alessandra Joghs) to the cloning console at Genetics Lab (154, 113, 2). -[2019-12-04 05:17:10.064] CLONING: Autoprocess added the record of BigFatAnimeTiddies/(Alessandra Joghs) to the cloning console at Genetics Lab (154, 113, 2). -[2019-12-04 05:17:12.062] CLONING: Autoprocess added the record of BigFatAnimeTiddies/(Alessandra Joghs) to the cloning console at Genetics Lab (154, 113, 2). -[2019-12-04 05:17:14.063] CLONING: Autoprocess added the record of BigFatAnimeTiddies/(Alessandra Joghs) to the cloning console at Genetics Lab (154, 113, 2). -[2019-12-04 05:17:16.076] CLONING: Autoprocess added the record of BigFatAnimeTiddies/(Alessandra Joghs) to the cloning console at Genetics Lab (154, 113, 2). -[2019-12-04 05:17:18.077] CLONING: Autoprocess added the record of BigFatAnimeTiddies/(Alessandra Joghs) to the cloning console at Genetics Lab (154, 113, 2). -[2019-12-04 05:17:20.075] CLONING: Autoprocess added the record of BigFatAnimeTiddies/(Alessandra Joghs) to the cloning console at Genetics Lab (154, 113, 2). -[2019-12-04 05:17:22.062] CLONING: Autoprocess added the record of BigFatAnimeTiddies/(Alessandra Joghs) to the cloning console at Genetics Lab (154, 113, 2). -[2019-12-04 05:21:44.173] CLONING: BigFatAnimeTiddies/(Alessandra Joghs) added the body-only record of *no key*/(Kira Agg) to the cloning console at Genetics Lab (154, 113, 2). -[2019-12-04 05:21:50.331] CLONING: BigFatAnimeTiddies/(Alessandra Joghs) initiated EMPTY cloning of [0x0][DC] via the cloning console at Genetics Lab (154, 113, 2). Pod: the cloning pod at Genetics Lab (155, 113, 2). -[2019-12-04 05:23:08.091] CLONING: *no key*/(Kira Agg) completed cloning cycle in the cloning pod at Genetics Lab (155, 113, 2). diff --git a/data/logs/2019/12/04/round-00.12.46/config_error.log b/data/logs/2019/12/04/round-00.12.46/config_error.log deleted file mode 100644 index 5fc92c1a..00000000 --- a/data/logs/2019/12/04/round-00.12.46/config_error.log +++ /dev/null @@ -1,12 +0,0 @@ -[2019-12-04 05:12:46.842] Running /tg/ revision: 2019-12-04 - - origin/master: 95e35dc714ec059af1ba4f6355f717d810b87fa6 - - HEAD: 2cbcd7d49519db45ac762495b8c325f79919db0e -[2019-12-04 05:12:46.849] Loading config file config.txt... -[2019-12-04 05:12:46.851] Loading config file game_options.txt... -[2019-12-04 05:12:46.855] Failed to validate setting "WEREWOLF 1" for probability -[2019-12-04 05:12:46.860] Loading config file dbconfig.txt... -[2019-12-04 05:12:46.862] Loading config file comms.txt... -[2019-12-04 05:12:46.864] Loading config file antag_rep.txt... -[2019-12-04 05:12:46.866] Loading config file donator_groupings.txt... -[2019-12-04 05:12:46.870] Loading config file maps.txt... -[2019-12-04 05:12:46.876] SQL: Database is not enabled in configuration. diff --git a/data/logs/2019/12/04/round-00.12.46/game.log b/data/logs/2019/12/04/round-00.12.46/game.log deleted file mode 100644 index 8e055552..00000000 --- a/data/logs/2019/12/04/round-00.12.46/game.log +++ /dev/null @@ -1,257 +0,0 @@ -[2019-12-04 05:12:46.877] Starting up round ID . - - ------------------------- -[2019-12-04 05:12:46.915] ADMIN: Loading Banlist -[2019-12-04 05:12:47.181] ACCESS: Login: BigFatAnimeTiddies from 127.0.0.1-3498261404 || BYOND v512.1463 -[2019-12-04 05:12:47.182] ACCESS: Mob Login: BigFatAnimeTiddies/(BigFatAnimeTiddies) was assigned to a /mob/dead/new_player -[2019-12-04 05:12:47.872] GAME: BigFatAnimeTiddies/(BigFatAnimeTiddies) Client BigFatAnimeTiddies/(BigFatAnimeTiddies) has taken ownership of mob BigFatAnimeTiddies(/mob/dead/new_player) (start area (11, 174, 1)) -[2019-12-04 05:12:47.990] GAME: Saved mode is 'extended' -[2019-12-04 05:12:55.052] GAME: Hierophant's Arena loaded at at 202,76,4 -[2019-12-04 05:12:55.075] GAME: Ruined Pizza Party loaded at at 108,60,4 -[2019-12-04 05:12:55.126] GAME: Ash Walker Nest loaded at at 193,27,4 -[2019-12-04 05:12:55.142] GAME: Makeshift Shelter loaded at at 130,109,4 -[2019-12-04 05:12:55.169] GAME: The Wishgranter Cube loaded at at 94,103,4 -[2019-12-04 05:12:55.185] GAME: Summoning Ritual loaded at at 64,119,4 -[2019-12-04 05:12:55.190] GAME: Ripley loaded at at 27,169,4 -[2019-12-04 05:12:55.472] GAME: CF Corsair loaded at at 73,34,3 -[2019-12-04 05:12:55.508] GAME: Space Arcade loaded at at 160,131,3 -[2019-12-04 05:12:55.538] GAME: Ancient Cloning Lab loaded at at 41,161,3 -[2019-12-04 05:12:55.802] GAME: Ancient Space Station loaded at at 115,43,3 -[2019-12-04 05:12:55.808] GAME: Ordinary Space Tile loaded at at 131,40,3 -[2019-12-04 05:12:55.832] GAME: Dinner for Two loaded at at 55,80,3 -[2019-12-04 05:12:55.857] GAME: Detached Teleporter loaded at at 150,221,3 -[2019-12-04 05:12:55.906] GAME: Gondoland loaded at at 175,181,3 -[2019-12-04 05:12:55.926] GAME: Asteroid 1 loaded at at 159,156,3 -[2019-12-04 05:12:55.971] GAME: Roboticst Augmentation Facility loaded at at 48,50,3 -[2019-12-04 05:12:56.007] GAME: Derelict 6 loaded at at 62,212,3 -[2019-12-04 05:12:56.128] GAME: Syndicate Ambush loaded at at 54,102,3 -[2019-12-04 05:12:56.156] GAME: Authorship loaded at at 38,102,3 -[2019-12-04 05:12:56.190] GAME: Unnamed Turreted Outpost loaded at at 35,24,3 -[2019-12-04 05:12:56.223] GAME: Derelict 1 loaded at at 89,152,3 -[2019-12-04 05:12:56.254] GAME: Aesthetic Outpost loaded at at 208,140,3 -[2019-12-04 05:13:03.443] GAME: [�APLU "Miner"] �APLU "Miner" created. (Lavaland Wastes (29, 171, 4)) -[2019-12-04 05:13:03.443] GAME: [�APLU "Miner"] 217-D Heavy Plasma Cutter initialized. (Lavaland Wastes (29, 171, 4)) -[2019-12-04 05:13:03.443] GAME: [�APLU "Miner"] The hydraulic clamp initialized. (Lavaland Wastes (29, 171, 4)) -[2019-12-04 05:13:03.444] GAME: [�APLU "Miner"] The exosuit mining scanner initialized. (Lavaland Wastes (29, 171, 4)) -[2019-12-04 05:13:03.456] GAME: [�APLU MK-I "Ripley"] �APLU MK-I "Ripley" created. (Mech Transport (80, 43, 3)) -[2019-12-04 05:13:26.785] GAME: Backup Shuttle loaded at at 84,206,1 -[2019-12-04 05:13:26.852] GAME: assault pod (Default) loaded at at 85,207,1 -[2019-12-04 05:13:27.104] GAME: basic syndicate infiltrator loaded at at 80,199,1 -[2019-12-04 05:13:27.401] GAME: fancy transport ferry loaded at at 82,208,1 -[2019-12-04 05:13:27.544] GAME: Box Station Emergency Shuttle loaded at at 83,199,1 -[2019-12-04 05:13:27.710] GAME: cargo ferry (Box) loaded at at 85,204,1 -[2019-12-04 05:13:27.886] GAME: escape pod (Default) loaded at at 87,208,1 -[2019-12-04 05:13:27.920] GAME: labour shuttle (Box) loaded at at 86,206,1 -[2019-12-04 05:13:27.986] GAME: auxilliary base (Default) loaded at at 84,206,1 -[2019-12-04 05:13:28.028] GAME: escape pod (Default) loaded at at 87,208,1 -[2019-12-04 05:13:28.101] GAME: arrival shuttle (Box) loaded at at 81,207,1 -[2019-12-04 05:13:28.169] GAME: escape pod (Default) loaded at at 87,208,1 -[2019-12-04 05:13:28.198] GAME: mining shuttle (Box) loaded at at 86,207,1 -[2019-12-04 05:13:28.231] GAME: escape pod (Default) loaded at at 87,208,1 -[2019-12-04 05:13:28.274] GAME: Syndicate Fighter loaded at at 86,206,1 -[2019-12-04 05:13:28.538] GAME: Small Freighter loaded at at 78,205,1 -[2019-12-04 05:13:28.893] GAME: Pirate Cutter loaded at at 77,204,1 -[2019-12-04 05:13:29.145] GAME: Syndicate Dropship loaded at at 81,207,1 -[2019-12-04 05:13:29.310] VOTE: Roundtype vote started by server. -[2019-12-04 05:13:41.561] ADMIN: BigFatAnimeTiddies has started the game. -[2019-12-04 05:13:47.418] GAME: *no key*/(BigFatAnimeTiddies) *no key*/(BigFatAnimeTiddies) is no longer owning mob BigFatAnimeTiddies(/mob/dead/new_player) (start area (11, 174, 1)) -[2019-12-04 05:13:47.418] ACCESS: Mob Login: BigFatAnimeTiddies/(Alessandra Joghs) was assigned to a /mob/living/carbon/human -[2019-12-04 05:13:47.903] GAME: BigFatAnimeTiddies/(Alessandra Joghs) Client BigFatAnimeTiddies/(Alessandra Joghs) has taken ownership of mob (/mob/living/carbon/human) (Arrival Shuttle (35, 146, 2)) -[2019-12-04 05:13:48.212] EMOTE: *no key*/(Runtime) looks alert. (Chief Medical Officer's Office (159, 109, 2)) -[2019-12-04 05:13:51.096] SAY: *no key*/(Prison Ofitser) "Engaging patrol mode." (Labor Camp Security (23, 36, 4)) -[2019-12-04 05:13:51.097] SAY: *no key*/(Prison Ofitser) "Disengaging patrol mode." (Labor Camp Security (23, 36, 4)) -[2019-12-04 05:13:51.102] SAY: *no key*/(Officer Beepsky) "Engaging patrol mode." (Labor Shuttle Dock (94, 159, 2)) -[2019-12-04 05:13:52.198] EMOTE: *no key*/(Ian) chases its tail! (Head of Personnel's Office (105, 121, 2)) -[2019-12-04 05:13:57.096] SAY: *no key*/(Poly) "WHO TOOK THE DAMN HARDSUITS?" FORCED by poly (Chief Engineer's Office (117, 83, 2)) -[2019-12-04 05:13:59.095] EMOTE: *no key*/(Pegwing) bawks! (Pirate Cutter (104, 140, 3)) -[2019-12-04 05:14:03.173] EMOTE: *no key*/(Poly) bawks! (Chief Engineer's Office (117, 83, 2)) -[2019-12-04 05:14:07.174] EMOTE: *no key*/(Pegwing) turns and flies towards the pirate's bedsheet. (Pirate Cutter (104, 140, 3)) -[2019-12-04 05:14:07.178] SAY: *no key*/(Poly) "I have lived many lives!" FORCED by poly (Chief Engineer's Office (117, 83, 2)) -[2019-12-04 05:14:07.187] SAY: *no key*/(Hijikata) "Delicious!" (Holding Facility (104, 53, 1)) -[2019-12-04 05:14:09.179] SAY: *no key*/(cow) "MOOOOOO" FORCED by poly (Holding Facility (104, 72, 1)) -[2019-12-04 05:14:11.179] SAY: *no key*/(Poly) "OH GOD ITS ABOUT TO DELAMINATE CALL THE SHUTTLE" FORCED by poly (Chief Engineer's Office (116, 83, 2)) -[2019-12-04 05:14:13.177] SAY: *no key*/(�chicken) "Bwaak bwak." FORCED by poly (Holding Facility (102, 71, 1)) -[2019-12-04 05:14:13.180] SAY: *no key*/(Hattori) "Delicious!" (Holding Facility (108, 45, 1)) -[2019-12-04 05:14:19.177] SAY: *no key*/(Poly) "Wire the solars, you lazy bums!" FORCED by poly (Chief Engineer's Office (115, 81, 2)) -[2019-12-04 05:14:21.174] EMOTE: *no key*/(Poly) squawks. (Chief Engineer's Office (115, 81, 2)) -[2019-12-04 05:14:24.277] EMOTE: *no key*/(Darwin) rolls. (Bar (133, 141, 2)) -[2019-12-04 05:14:27.171] EMOTE: *no key*/(mouse) runs in a circle. (Aft Maintenance (147, 104, 2)) -[2019-12-04 05:14:30.273] EMOTE: *no key*/(grey baby slime (29)) vibrates! (Xenobiology Lab (165, 92, 2)) -[2019-12-04 05:14:30.671] VOTE: Vote Result: Inconclusive - No Votes! -[2019-12-04 05:14:31.172] EMOTE: *no key*/(mouse) runs in a circle. (Aft Maintenance (125, 106, 2)) -[2019-12-04 05:14:35.173] SAY: *no key*/(Poly) "I have lived many lives!" FORCED by poly (Chief Engineer's Office (115, 81, 2)) -[2019-12-04 05:14:36.278] EMOTE: *no key*/(Darwin) waves his tail. (Bar (133, 141, 2)) -[2019-12-04 05:14:41.173] EMOTE: *no key*/(mouse) squeaks. (Port Quarter Maintenance (79, 81, 2)) -[2019-12-04 05:14:41.177] SAY: *no key*/(Poly) "WHO TOOK THE DAMN HARDSUITS?" FORCED by poly (Chief Engineer's Office (115, 81, 2)) -[2019-12-04 05:14:43.171] EMOTE: *no key*/(mouse) shakes. (Aft Maintenance (125, 106, 2)) -[2019-12-04 05:14:50.274] EMOTE: *no key*/(monkey (373)) scratches. (Virology (159, 101, 2)) -[2019-12-04 05:14:51.173] EMOTE: *no key*/(Poly) bawks! (Chief Engineer's Office (115, 81, 2)) -[2019-12-04 05:14:53.177] SAY: *no key*/(�Medibot) "Delicious!" (CentCom Transport Shuttle Dock (154, 73, 1)) -[2019-12-04 05:14:54.274] EMOTE: *no key*/(Runtime) crouches on its hind legs. (Chief Medical Officer's Office (159, 109, 2)) -[2019-12-04 05:14:58.276] EMOTE: *no key*/(Ian) dances around. (Head of Personnel's Office (105, 121, 2)) -[2019-12-04 05:15:03.175] EMOTE: *no key*/(Poly) squawks. (Chief Engineer's Office (115, 81, 2)) -[2019-12-04 05:15:07.178] EMOTE: *no key*/(Poly) looks in the �Zippo lighter's direction and takes flight. (Chief Engineer's Office (115, 81, 2)) -[2019-12-04 05:15:09.179] SAY: *no key*/(Hijikata) "What kind of medbay is this? Everyone's dropping like flies." (Holding Facility (104, 53, 1)) -[2019-12-04 05:15:14.273] EMOTE: *no key*/(monkey (271)) jumps! (Virology (160, 100, 2)) -[2019-12-04 05:15:18.271] EMOTE: *no key*/(monkey (373)) waves his tail. (Virology (159, 100, 2)) -[2019-12-04 05:15:20.273] EMOTE: *no key*/(monkey (685)) scratches. (Genetics Lab (161, 120, 2)) -[2019-12-04 05:15:27.173] EMOTE: *no key*/(Pegwing) bawks! (Pirate Cutter (106, 141, 3)) -[2019-12-04 05:15:31.176] SAY: *no key*/(Hijikata) "I knew it, I should've been a plastic surgeon." (Holding Facility (104, 53, 1)) -[2019-12-04 05:15:33.175] SAY: *no key*/(Poly) "Check the crystal, you chucklefucks!" FORCED by poly (Chief Engineer's Office (115, 81, 2)) -[2019-12-04 05:15:36.279] EMOTE: *no key*/(Darwin) scratches. (Bar (133, 141, 2)) -[2019-12-04 05:15:38.272] EMOTE: *no key*/(Runtime) stops resting. (Chief Medical Officer's Office (159, 109, 2)) -[2019-12-04 05:15:43.175] SAY: *no key*/(Tom) "Squeak!" FORCED by poly (Prison Wing (99, 189, 2)) -[2019-12-04 05:15:48.276] EMOTE: *no key*/(Runtime) lies down. (Chief Medical Officer's Office (159, 108, 2)) -[2019-12-04 05:15:54.165] ADMIN: BigFatAnimeTiddies/(Alessandra Joghs) created a /obj/item/storage/box/stockparts/deluxe -[2019-12-04 05:15:55.174] SAY: *no key*/(Pegwing) "Cracker?" FORCED by poly (Pirate Cutter (109, 143, 3)) -[2019-12-04 05:15:57.179] SAY: *no key*/(Hijikata) "Radar, put a mask on!" (Holding Facility (104, 53, 1)) -[2019-12-04 05:15:57.757] ADMIN: BigFatAnimeTiddies/(Alessandra Joghs) created a /obj/item/storage/part_replacer/bluespace -[2019-12-04 05:16:01.172] SAY: *no key*/(mouse) "Squeak!" FORCED by poly (Starboard Quarter Maintenance (167, 80, 2)) -[2019-12-04 05:16:03.173] EMOTE: *no key*/(Poly) looks in the burn patch's direction and takes flight. (Chief Engineer's Office (115, 81, 2)) -[2019-12-04 05:16:06.275] EMOTE: *no key*/(Runtime) looks alert. (Chief Medical Officer's Office (159, 108, 2)) -[2019-12-04 05:16:09.173] EMOTE: *no key*/(Poly) squawks. (Chief Engineer's Office (115, 81, 2)) -[2019-12-04 05:16:11.171] EMOTE: *no key*/(mouse) runs in a circle. (Aft Maintenance (147, 104, 2)) -[2019-12-04 05:16:14.274] EMOTE: *no key*/(monkey (967)) rolls. (Genetics Lab (161, 116, 2)) -[2019-12-04 05:16:15.175] EMOTE: *no key*/(Paperwork) looks around sleepily. (Cargo Bay (80, 122, 2)) -[2019-12-04 05:16:19.175] EMOTE: *no key*/(Tom) shakes. (Prison Wing (99, 189, 2)) -[2019-12-04 05:16:33.170] EMOTE: *no key*/(Pegwing) flutters its wings. (Pirate Cutter (109, 143, 3)) -[2019-12-04 05:16:33.175] SAY: *no key*/(�Medibot) "Radar, put a mask on!" (CentCom Transport Shuttle Dock (155, 73, 1)) -[2019-12-04 05:16:33.181] EMOTE: *no key*/(Tom) shakes. (Prison Wing (100, 189, 2)) -[2019-12-04 05:16:39.174] SAY: *no key*/(Poly) "Poly wanna cracker!" FORCED by poly (Chief Engineer's Office (115, 81, 2)) -[2019-12-04 05:16:44.275] EMOTE: *no key*/(monkey (858)) waves her tail. (Genetics Lab (161, 118, 2)) -[2019-12-04 05:16:46.276] EMOTE: *no key*/(Runtime) looks alert. (Chief Medical Officer's Office (159, 108, 2)) -[2019-12-04 05:16:49.176] EMOTE: *no key*/(Poly) flutters its wings. (Chief Engineer's Office (115, 81, 2)) -[2019-12-04 05:16:50.273] EMOTE: *no key*/(monkey (373)) jumps! (Virology (160, 101, 2)) -[2019-12-04 05:16:51.173] SAY: *no key*/(Poly) "OH GOD ITS ABOUT TO DELAMINATE CALL THE SHUTTLE" FORCED by poly (Chief Engineer's Office (115, 81, 2)) -[2019-12-04 05:16:52.276] EMOTE: *no key*/(Runtime) stops resting. (Chief Medical Officer's Office (159, 108, 2)) -[2019-12-04 05:16:53.176] SAY: *no key*/(Poly) "OH GOD ITS ABOUT TO DELAMINATE CALL THE SHUTTLE" FORCED by poly (Chief Engineer's Office (115, 81, 2)) -[2019-12-04 05:16:57.177] SAY: *no key*/(�chicken) "Cluck!" FORCED by poly (Holding Facility (102, 72, 1)) -[2019-12-04 05:16:59.176] EMOTE: *no key*/(Poly) looks in the burn patch's direction and takes flight. (Chief Engineer's Office (115, 81, 2)) -[2019-12-04 05:17:01.171] SAY: *no key*/(Pegwing) "Hello!" FORCED by poly (Pirate Cutter (108, 143, 3)) -[2019-12-04 05:17:03.176] EMOTE: *no key*/(Poly) bawks! (Chief Engineer's Office (116, 82, 2)) -[2019-12-04 05:17:05.174] SAY: *no key*/(Poly) "Wire the solars, you lazy bums!" FORCED by poly (Chief Engineer's Office (115, 81, 2)) -[2019-12-04 05:17:06.275] EMOTE: *no key*/(monkey (858)) waves her tail. (Genetics Lab (160, 118, 2)) -[2019-12-04 05:17:07.174] EMOTE: *no key*/(Runtime) shakes its head. (Chief Medical Officer's Office (158, 108, 2)) -[2019-12-04 05:17:08.276] EMOTE: *no key*/(Runtime) crouches on its hind legs. (Chief Medical Officer's Office (158, 108, 2)) -[2019-12-04 05:17:11.172] EMOTE: *no key*/(mouse) squeaks. (Aft Maintenance (125, 108, 2)) -[2019-12-04 05:17:13.174] SAY: *no key*/(mouse) "Squeak?" FORCED by poly (Aft Maintenance (147, 104, 2)) -[2019-12-04 05:17:17.175] SAY: *no key*/(mouse) "SQUEAK!" FORCED by poly (Aft Maintenance (130, 105, 2)) -[2019-12-04 05:17:19.175] SAY: *no key*/(�Medibot) "Delicious!" (Authorship (42, 106, 3)) -[2019-12-04 05:17:27.174] SAY: *no key*/(Poly) "OH GOD ITS ABOUT TO DELAMINATE CALL THE SHUTTLE" FORCED by poly (Chief Engineer's Office (115, 81, 2)) -[2019-12-04 05:17:35.172] SAY: *no key*/(mouse) "SQUEAK!" FORCED by poly (Port Quarter Maintenance (85, 93, 2)) -[2019-12-04 05:17:36.275] EMOTE: *no key*/(Runtime) sits down. (Chief Medical Officer's Office (158, 108, 2)) -[2019-12-04 05:17:45.172] SAY: *no key*/(mouse) "SQUEAK!" FORCED by poly (Aft Maintenance (146, 97, 2)) -[2019-12-04 05:17:49.177] SAY: *no key*/(Poly) "Wire the solars, you lazy bums!" FORCED by poly (Chief Engineer's Office (115, 81, 2)) -[2019-12-04 05:17:54.274] EMOTE: *no key*/(Runtime) sits down. (Chief Medical Officer's Office (158, 108, 2)) -[2019-12-04 05:17:55.174] EMOTE: *no key*/(Poly) looks in the �Power-ON cartridge's direction and takes flight. (Chief Engineer's Office (115, 81, 2)) -[2019-12-04 05:17:56.275] EMOTE: *no key*/(monkey (632)) scratches. (Genetics Lab (160, 117, 2)) -[2019-12-04 05:17:59.171] EMOTE: *no key*/(mouse) squeaks. (Custodial Closet (124, 109, 2)) -[2019-12-04 05:17:59.173] SAY: *no key*/(Poly) "Check the crystal, you chucklefucks!" FORCED by poly (Chief Engineer's Office (116, 79, 2)) -[2019-12-04 05:18:05.174] EMOTE: *no key*/(mouse) squeaks. (Aft Maintenance (130, 104, 2)) -[2019-12-04 05:18:05.178] SAY: *no key*/(Runtime) "HSSSSS" FORCED by poly (Chief Medical Officer's Office (158, 108, 2)) -[2019-12-04 05:18:07.176] SAY: *no key*/(Poly) "Check the crystal, you chucklefucks!" FORCED by poly (Chief Engineer's Office (116, 79, 2)) -[2019-12-04 05:18:13.176] SAY: *no key*/(Tom) "SQUEAK!" FORCED by poly (Prison Wing (101, 191, 2)) -[2019-12-04 05:18:14.271] EMOTE: *no key*/(grey baby slime (443)) bounces in place. (Xenobiology Lab (176, 92, 2)) -[2019-12-04 05:18:16.274] EMOTE: *no key*/(monkey (967)) rolls. (Genetics Lab (161, 119, 2)) -[2019-12-04 05:18:22.274] EMOTE: *no key*/(monkey (632)) waves her tail. (Genetics Lab (160, 116, 2)) -[2019-12-04 05:18:23.172] SAY: *no key*/(mouse) "SQUEAK!" FORCED by poly (Aft Maintenance (146, 98, 2)) -[2019-12-04 05:18:23.175] SAY: *no key*/(Poly) "Wire the solars, you lazy bums!" FORCED by poly (Chief Engineer's Office (115, 81, 2)) -[2019-12-04 05:18:26.272] EMOTE: *no key*/(monkey (236)) rolls. (Genetics Lab (160, 119, 2)) -[2019-12-04 05:18:29.177] SAY: *no key*/(Ian) "Woof!" FORCED by poly (Head of Personnel's Office (103, 120, 2)) -[2019-12-04 05:18:39.173] SAY: *no key*/(Poly) "I have lived many lives!" FORCED by poly (Chief Engineer's Office (115, 81, 2)) -[2019-12-04 05:18:40.272] EMOTE: *no key*/(monkey (858)) jumps! (Genetics Lab (161, 116, 2)) -[2019-12-04 05:18:41.173] SAY: *no key*/(mouse) "Squeak?" FORCED by poly (Aft Maintenance (126, 109, 2)) -[2019-12-04 05:18:43.172] EMOTE: *no key*/(Pegwing) looks in the gold coin's direction and takes flight. (Pirate Cutter (112, 143, 3)) -[2019-12-04 05:18:43.177] SAY: *no key*/(Hattori) "Radar, put a mask on!" (Holding Facility (108, 45, 1)) -[2019-12-04 05:18:47.176] EMOTE: *no key*/(Poly) flutters its wings. (Chief Engineer's Office (115, 81, 2)) -[2019-12-04 05:18:48.276] EMOTE: *no key*/(monkey (215)) jumps! (Genetics Lab (160, 116, 2)) -[2019-12-04 05:18:53.174] EMOTE: *no key*/(Runtime) mews. (Chief Medical Officer's Office (158, 108, 2)) -[2019-12-04 05:18:55.176] SAY: *no key*/(�chicken) "Cluck!" FORCED by poly (Holding Facility (104, 71, 1)) -[2019-12-04 05:18:59.178] SAY: *no key*/(Hattori) "I knew it, I should've been a plastic surgeon." (Holding Facility (108, 45, 1)) -[2019-12-04 05:19:02.274] EMOTE: *no key*/(monkey (165)) rolls. (Virology (159, 100, 2)) -[2019-12-04 05:19:05.172] SAY: *no key*/(mouse) "SQUEAK!" FORCED by poly (Aft Maintenance (146, 98, 2)) -[2019-12-04 05:19:05.178] EMOTE: *no key*/(cow) shakes its head. (Holding Facility (102, 71, 1)) -[2019-12-04 05:19:07.176] EMOTE: *no key*/(Poly) looks in the �Power-ON cartridge's direction and takes flight. (Chief Engineer's Office (115, 81, 2)) -[2019-12-04 05:19:09.175] EMOTE: *no key*/(Paperwork) snores. (Cargo Bay (82, 120, 2)) -[2019-12-04 05:19:13.173] SAY: *no key*/(Poly) "Check the crystal, you chucklefucks!" FORCED by poly (Chief Engineer's Office (116, 79, 2)) -[2019-12-04 05:19:17.176] EMOTE: *no key*/(mouse) squeaks. (Aft Maintenance (146, 99, 2)) -[2019-12-04 05:19:25.178] SAY: *no key*/(Ian) "Bark!" FORCED by poly (Head of Personnel's Office (104, 120, 2)) -[2019-12-04 05:19:27.177] SAY: *no key*/(Poly) "Poly wanna cracker!" FORCED by poly (Chief Engineer's Office (115, 81, 2)) -[2019-12-04 05:19:28.279] EMOTE: *no key*/(monkey (858)) rolls. (Genetics Lab (160, 116, 2)) -[2019-12-04 05:19:43.173] SAY: *no key*/(Runtime) "HSSSSS" FORCED by poly (Chief Medical Officer's Office (158, 108, 2)) -[2019-12-04 05:19:47.172] EMOTE: *no key*/(mouse) shakes. (Aft Maintenance (146, 103, 2)) -[2019-12-04 05:19:47.181] SAY: *no key*/(cow) "moo" FORCED by poly (Holding Facility (103, 72, 1)) -[2019-12-04 05:19:54.274] GAME: Random Event triggering: Minor Space Dust (/datum/round_event/space_dust) -[2019-12-04 05:19:55.175] SAY: *no key*/(Runtime) "HSSSSS" FORCED by poly (Chief Medical Officer's Office (158, 108, 2)) -[2019-12-04 05:19:57.175] EMOTE: *no key*/(mouse) shakes. (Aft Maintenance (146, 104, 2)) -[2019-12-04 05:19:57.182] SAY: *no key*/(cow) "moo" FORCED by poly (Holding Facility (102, 72, 1)) -[2019-12-04 05:20:01.174] EMOTE: *no key*/(Ian) barks! (Head of Personnel's Office (105, 120, 2)) -[2019-12-04 05:20:01.176] SAY: *no key*/(�chicken) "BWAAAAARK BWAK BWAK BWAK!" FORCED by poly (Holding Facility (104, 71, 1)) -[2019-12-04 05:20:03.174] EMOTE: *no key*/(Pegwing) looks in the gold coin's direction and takes flight. (Pirate Cutter (112, 143, 3)) -[2019-12-04 05:20:11.177] SAY: *no key*/(Tom) "Squeak!" FORCED by poly (Prison Wing (101, 191, 2)) -[2019-12-04 05:20:12.275] EMOTE: *no key*/(monkey (967)) waves her tail. (Genetics Lab (161, 119, 2)) -[2019-12-04 05:20:13.173] EMOTE: *no key*/(Poly) looks in the �Power-ON cartridge's direction and takes flight. (Chief Engineer's Office (115, 81, 2)) -[2019-12-04 05:20:25.172] SAY: *no key*/(�Medibot) "Radar, put a mask on!" (CentCom Transport Shuttle Dock (155, 73, 1)) -[2019-12-04 05:20:27.181] SAY: *no key*/(Hattori) "What kind of medbay is this? Everyone's dropping like flies." (Holding Facility (108, 45, 1)) -[2019-12-04 05:20:28.274] EMOTE: *no key*/(Runtime) looks alert. (Chief Medical Officer's Office (158, 108, 2)) -[2019-12-04 05:20:33.173] EMOTE: *no key*/(Poly) squawks. (Chief Engineer's Office (116, 79, 2)) -[2019-12-04 05:20:37.172] SAY: *no key*/(mouse) "Squeak!" FORCED by poly (Starboard Quarter Maintenance (169, 80, 2)) -[2019-12-04 05:20:37.176] SAY: *no key*/(Poly) "Poly wanna cracker!" FORCED by poly (Chief Engineer's Office (116, 80, 2)) -[2019-12-04 05:20:39.176] SAY: *no key*/(cow) "moo" FORCED by poly (Holding Facility (104, 72, 1)) -[2019-12-04 05:20:43.176] SAY: *no key*/(Tom) "Squeak!" FORCED by poly (Prison Wing (101, 191, 2)) -[2019-12-04 05:20:45.173] EMOTE: *no key*/(Poly) squawks. (Chief Engineer's Office (116, 80, 2)) -[2019-12-04 05:20:53.172] SAY: *no key*/(mouse) "SQUEAK!" FORCED by poly (Engineering (108, 58, 2)) -[2019-12-04 05:20:58.272] EMOTE: *no key*/(monkey (135)) scratches. (Virology (159, 99, 2)) -[2019-12-04 05:21:00.276] EMOTE: *no key*/(Ian) chases its tail! (Head of Personnel's Office (105, 121, 2)) -[2019-12-04 05:21:01.174] SAY: *no key*/(Poly) "WHO TOOK THE DAMN HARDSUITS?" FORCED by poly (Chief Engineer's Office (115, 81, 2)) -[2019-12-04 05:21:02.277] EMOTE: *no key*/(monkey (632)) waves her tail. (Genetics Lab (161, 119, 2)) -[2019-12-04 05:21:05.171] EMOTE: *no key*/(mouse) shakes. (Aft Maintenance (146, 100, 2)) -[2019-12-04 05:21:15.172] EMOTE: *no key*/(Pegwing) looks in the gold coin's direction and takes flight. (Pirate Cutter (112, 143, 3)) -[2019-12-04 05:21:15.173] SAY: *no key*/(�Medibot) "Radar, put a mask on!" (Authorship (42, 106, 3)) -[2019-12-04 05:21:15.176] SAY: *no key*/(Poly) "Poly wanna cracker!" FORCED by poly (Chief Engineer's Office (115, 81, 2)) -[2019-12-04 05:21:20.273] EMOTE: *no key*/(Runtime) walks around. (Chief Medical Officer's Office (158, 108, 2)) -[2019-12-04 05:21:30.274] EMOTE: *no key*/(monkey (373)) rolls. (Virology (158, 99, 2)) -[2019-12-04 05:21:30.276] EMOTE: *no key*/(Ian) chases its tail! (Head of Personnel's Office (105, 120, 2)) -[2019-12-04 05:21:33.177] EMOTE: *no key*/(�chicken) pecks at the ground. (Holding Facility (104, 72, 1)) -[2019-12-04 05:21:37.174] EMOTE: *no key*/(Poly) bawks! (Chief Engineer's Office (115, 81, 2)) -[2019-12-04 05:21:39.175] EMOTE: *no key*/(cow) shakes its head. (Holding Facility (104, 72, 1)) -[2019-12-04 05:21:41.175] EMOTE: *no key*/(Tom) squeaks. (Prison Wing (100, 190, 2)) -[2019-12-04 05:21:43.174] EMOTE: *no key*/(Poly) looks in the �Power-ON cartridge's direction and takes flight. (Chief Engineer's Office (115, 81, 2)) -[2019-12-04 05:21:47.176] EMOTE: *no key*/(Poly) flutters its wings. (Chief Engineer's Office (116, 79, 2)) -[2019-12-04 05:21:49.175] SAY: *no key*/(Poly) "I have lived many lives!" FORCED by poly (Chief Engineer's Office (116, 79, 2)) -[2019-12-04 05:21:51.176] SAY: *no key*/(Poly) "I have lived many lives!" FORCED by poly (Chief Engineer's Office (116, 80, 2)) -[2019-12-04 05:21:53.173] SAY: *no key*/(Poly) "Wire the solars, you lazy bums!" FORCED by poly (Chief Engineer's Office (116, 79, 2)) -[2019-12-04 05:21:58.280] EMOTE: *no key*/(Darwin) scratches. (Bar (133, 141, 2)) -[2019-12-04 05:22:05.174] SAY: *no key*/(Poly) "Wire the solars, you lazy bums!" FORCED by poly (Chief Engineer's Office (116, 81, 2)) -[2019-12-04 05:22:12.281] EMOTE: *no key*/(Darwin) scratches. (Bar (133, 141, 2)) -[2019-12-04 05:22:15.175] EMOTE: *no key*/(cow) shakes its head. (Holding Facility (103, 72, 1)) -[2019-12-04 05:22:17.183] SAY: *no key*/(Nobody's Perfect) "Delicious!" (Wizard's Den (24, 75, 1)) -[2019-12-04 05:22:19.174] SAY: *no key*/(Poly) "Check the crystal, you chucklefucks!" FORCED by poly (Chief Engineer's Office (118, 80, 2)) -[2019-12-04 05:22:25.172] SAY: *no key*/(Poly) "OH GOD ITS ABOUT TO DELAMINATE CALL THE SHUTTLE" FORCED by poly (Chief Engineer's Office (115, 81, 2)) -[2019-12-04 05:22:29.178] SAY: *no key*/(Hattori) "Radar, put a mask on!" (Holding Facility (108, 45, 1)) -[2019-12-04 05:22:35.171] EMOTE: *no key*/(mouse) runs in a circle. (Fore Maintenance (97, 160, 2)) -[2019-12-04 05:22:35.172] EMOTE: *no key*/(mouse) runs in a circle. (Aft Maintenance (146, 99, 2)) -[2019-12-04 05:22:37.171] SAY: *no key*/(mouse) "Squeak!" FORCED by poly (Port Quarter Maintenance (85, 92, 2)) -[2019-12-04 05:22:39.172] SAY: *no key*/(mouse) "Squeak!" FORCED by poly (Fore Maintenance (97, 160, 2)) -[2019-12-04 05:22:39.175] EMOTE: *no key*/(Poly) squawks. (Chief Engineer's Office (115, 81, 2)) -[2019-12-04 05:22:43.173] EMOTE: *no key*/(Poly) flutters its wings. (Chief Engineer's Office (115, 81, 2)) -[2019-12-04 05:22:45.172] EMOTE: *no key*/(Pegwing) looks in the gold coin's direction and takes flight. (Pirate Cutter (112, 143, 3)) -[2019-12-04 05:22:45.174] SAY: *no key*/(Poly) "OH GOD ITS ABOUT TO DELAMINATE CALL THE SHUTTLE" FORCED by poly (Chief Engineer's Office (115, 81, 2)) -[2019-12-04 05:22:49.174] SAY: *no key*/(Poly) "Check the crystal, you chucklefucks!" FORCED by poly (Chief Engineer's Office (115, 81, 2)) -[2019-12-04 05:22:49.179] EMOTE: *no key*/(�chicken) pecks at the ground. (Holding Facility (104, 71, 1)) -[2019-12-04 05:22:53.178] SAY: *no key*/(�chicken) "Bwaak bwak." FORCED by poly (Holding Facility (104, 71, 1)) -[2019-12-04 05:22:57.175] SAY: *no key*/(Poly) "WHO TOOK THE DAMN HARDSUITS?" FORCED by poly (Chief Engineer's Office (115, 81, 2)) -[2019-12-04 05:23:01.172] SAY: *no key*/(mouse) "Squeak!" FORCED by poly (Aft Maintenance (146, 99, 2)) -[2019-12-04 05:23:07.176] SAY: *no key*/(Poly) "Wire the solars, you lazy bums!" FORCED by poly (Chief Engineer's Office (115, 81, 2)) -[2019-12-04 05:23:07.180] SAY: *no key*/(Hattori) "Delicious!" (Holding Facility (108, 45, 1)) -[2019-12-04 05:23:09.174] EMOTE: *no key*/(Poly) flutters its wings. (Chief Engineer's Office (115, 81, 2)) -[2019-12-04 05:23:09.175] SAY: *no key*/(Runtime) "HSSSSS" FORCED by poly (Chief Medical Officer's Office (158, 107, 2)) -[2019-12-04 05:23:09.177] EMOTE: *no key*/(Ian) shakes its head. (Head of Personnel's Office (104, 120, 2)) -[2019-12-04 05:23:10.273] EMOTE: *no key*/(grey baby slime (443)) lights up for a bit, then stops. (Xenobiology Lab (176, 92, 2)) -[2019-12-04 05:23:11.175] EMOTE: *no key*/(Poly) looks in the �Power-ON cartridge's direction and takes flight. (Chief Engineer's Office (115, 81, 2)) -[2019-12-04 05:23:15.171] SAY: *no key*/(mouse) "Squeak?" FORCED by poly (Aft Maintenance (123, 105, 2)) -[2019-12-04 05:23:15.174] SAY: *no key*/(Poly) "OH GOD ITS ABOUT TO DELAMINATE CALL THE SHUTTLE" FORCED by poly (Chief Engineer's Office (116, 79, 2)) -[2019-12-04 05:23:15.178] SAY: *no key*/(Tom) "SQUEAK!" FORCED by poly (Prison Wing (104, 189, 2)) -[2019-12-04 05:23:18.288] EMOTE: *no key*/(grey baby slime (443)) bounces in place. (Xenobiology Lab (175, 92, 2)) -[2019-12-04 05:23:19.174] SAY: *no key*/(Poly) "OH GOD ITS ABOUT TO DELAMINATE CALL THE SHUTTLE" FORCED by poly (Chief Engineer's Office (116, 79, 2)) -[2019-12-04 05:23:21.173] SAY: *no key*/(Poly) "Wire the solars, you lazy bums!" FORCED by poly (Chief Engineer's Office (116, 79, 2)) -[2019-12-04 05:23:29.174] SAY: *no key*/(Poly) "WHO TOOK THE DAMN HARDSUITS?" FORCED by poly (Chief Engineer's Office (115, 81, 2)) diff --git a/data/logs/2019/12/04/round-00.12.46/gravity.html b/data/logs/2019/12/04/round-00.12.46/gravity.html deleted file mode 100644 index 158d2acb..00000000 --- a/data/logs/2019/12/04/round-00.12.46/gravity.html +++ /dev/null @@ -1,6 +0,0 @@ -00:13:01 [0x20070f6] (113,123,2) || the gravitational generator has regained power.
-00:13:01 [0x20070f6] (113,123,2) || the gravitational generator is now charging.
-00:13:12 [0x20070f6] (113,123,2) || the gravitational generator has regained power.
-00:13:12 [0x20070f6] (113,123,2) || the gravitational generator is now charging.
-00:13:31 [0x20070f6] (113,123,2) || the gravitational generator has regained power.
-00:13:31 [0x20070f6] (113,123,2) || the gravitational generator is now charging.
diff --git a/data/logs/2019/12/04/round-00.12.46/hrefs.log b/data/logs/2019/12/04/round-00.12.46/hrefs.log deleted file mode 100644 index 819a690b..00000000 --- a/data/logs/2019/12/04/round-00.12.46/hrefs.log +++ /dev/null @@ -1,23 +0,0 @@ -[2019-12-04 05:12:46.881] Starting up round ID . - - ------------------------- -[2019-12-04 05:12:49.468] HREF: BigFatAnimeTiddies (usr:BigFatAnimeTiddies[(11,174,1)]) : _src_=chat&proc=analyzeClientData¶m[cookie]={"connData":[{"ckey":"bigfatanimetiddies","ip":"68.38.94.206","compid":"3498261404"},{"ckey":"bigfatanimetiddies","ip":null,"compid":"3498261404"},{"ckey":"bigfatanimetiddies","ip":"127.0.0.1","compid":"3498261404"},{"ckey":"guest3498261404","ip":null,"compid":"3498261404"}]} -[2019-12-04 05:13:43.968] HREF: BigFatAnimeTiddies (usr:BigFatAnimeTiddies[(11,174,1)]) : BigFatAnimeTiddies src=[mob_9];late_join=1 -[2019-12-04 05:13:47.405] HREF: BigFatAnimeTiddies (usr:BigFatAnimeTiddies[(11,174,1)]) : BigFatAnimeTiddies src=[mob_9];SelectedJob=Chief%20Medical%20Officer -[2019-12-04 05:15:45.786] HREF: BigFatAnimeTiddies (usr:Alessandra Joghs[(154,115,2)]) : bigfatanimetiddies's admin datum (!localhost!) src=[0x210012a7];admin_token=810014961010010072692845736252074921;create_object=1 -[2019-12-04 05:15:54.162] HREF: BigFatAnimeTiddies (usr:Alessandra Joghs[(154,115,2)]) : bigfatanimetiddies's admin datum (!localhost!) src=%5B0x210012a7%5D%3Badmin_token%3D810014961010010072692845736252074921&admin_token=810014961010010072692845736252074921&filter=part&offset=x%2Cy%2Cz&offset_type=relative&object_count=1&object_dir=&object_name=&object_where=onfloor&object_list=%2Fobj%2Fitem%2Fstorage%2Fbox%2Fstockparts%2Fdeluxe -[2019-12-04 05:15:57.756] HREF: BigFatAnimeTiddies (usr:Alessandra Joghs[(154,115,2)]) : bigfatanimetiddies's admin datum (!localhost!) src=%5B0x210012a7%5D%3Badmin_token%3D810014961010010072692845736252074921&admin_token=810014961010010072692845736252074921&filter=part&offset=x%2Cy%2Cz&offset_type=relative&object_count=1&object_dir=&object_name=&object_where=onfloor&object_list=%2Fobj%2Fitem%2Fstorage%2Fpart_replacer%2Fbluespace -[2019-12-04 05:16:15.695] HREF: BigFatAnimeTiddies (usr:Alessandra Joghs[(153,113,2)]) : The cloning console src=[0x200798f];task=autoprocess -[2019-12-04 05:17:26.114] HREF: BigFatAnimeTiddies (usr:Alessandra Joghs[(154,114,2)]) : The cloning console src=[0x200798f];menu=2 -[2019-12-04 05:17:27.116] HREF: BigFatAnimeTiddies (usr:Alessandra Joghs[(154,114,2)]) : The cloning console src=[0x200798f];view_rec=bbfb -[2019-12-04 05:21:21.459] HREF: BigFatAnimeTiddies (usr:Alessandra Joghs[(158,116,2)]) : The �DNA scanner access console src=[0x200767c];task=inspect;num=1; -[2019-12-04 05:21:21.992] HREF: BigFatAnimeTiddies (usr:Alessandra Joghs[(158,116,2)]) : The �DNA scanner access console src=[0x200767c];task=inspect;num=2; -[2019-12-04 05:21:22.318] HREF: BigFatAnimeTiddies (usr:Alessandra Joghs[(158,116,2)]) : The �DNA scanner access console src=[0x200767c];task=inspect;num=3; -[2019-12-04 05:21:22.866] HREF: BigFatAnimeTiddies (usr:Alessandra Joghs[(158,116,2)]) : The �DNA scanner access console src=[0x200767c];task=inspect;num=2; -[2019-12-04 05:21:23.726] HREF: BigFatAnimeTiddies (usr:Alessandra Joghs[(158,116,2)]) : The �DNA scanner access console src=[0x200767c];task=pulsegene;num=5;path=/datum/mutation/human/race; -[2019-12-04 05:21:33.927] HREF: BigFatAnimeTiddies (usr:Alessandra Joghs[(153,114,2)]) : The cloning console src=[0x200798f];menu=2 -[2019-12-04 05:21:35.623] HREF: BigFatAnimeTiddies (usr:Alessandra Joghs[(154,114,2)]) : The cloning console src=[0x200798f];menu=1 -[2019-12-04 05:21:38.936] HREF: BigFatAnimeTiddies (usr:Alessandra Joghs[(154,114,2)]) : The cloning console src=[0x200798f];scan=1 -[2019-12-04 05:21:42.226] HREF: BigFatAnimeTiddies (usr:Alessandra Joghs[(154,114,2)]) : The cloning console src=[0x200798f];scan=1;body_only=1 -[2019-12-04 05:21:45.233] HREF: BigFatAnimeTiddies (usr:Alessandra Joghs[(154,114,2)]) : The cloning console src=[0x200798f];menu=2 -[2019-12-04 05:21:46.295] HREF: BigFatAnimeTiddies (usr:Alessandra Joghs[(154,114,2)]) : The cloning console src=[0x200798f];view_rec=2fa3 -[2019-12-04 05:21:50.311] HREF: BigFatAnimeTiddies (usr:Alessandra Joghs[(154,114,2)]) : The cloning console src=[0x200798f];clone=2fa3;empty=TRUE diff --git a/data/logs/2019/12/04/round-00.12.46/job_debug.log b/data/logs/2019/12/04/round-00.12.46/job_debug.log deleted file mode 100644 index 9e9fe98d..00000000 --- a/data/logs/2019/12/04/round-00.12.46/job_debug.log +++ /dev/null @@ -1,2 +0,0 @@ -[2019-12-04 05:12:46.883] Starting up round ID . - - ------------------------- diff --git a/data/logs/2019/12/04/round-00.12.46/manifest.log b/data/logs/2019/12/04/round-00.12.46/manifest.log deleted file mode 100644 index 428b3df4..00000000 --- a/data/logs/2019/12/04/round-00.12.46/manifest.log +++ /dev/null @@ -1,3 +0,0 @@ -[2019-12-04 05:12:46.880] Starting up round ID . - - ------------------------- -[2019-12-04 05:13:47.871] BigFatAnimeTiddies \ Alessandra Joghs \ Chief Medical Officer \ NONE \ LATEJOIN diff --git a/data/logs/2019/12/04/round-00.12.46/pda.log b/data/logs/2019/12/04/round-00.12.46/pda.log deleted file mode 100644 index 0c22c659..00000000 --- a/data/logs/2019/12/04/round-00.12.46/pda.log +++ /dev/null @@ -1,2 +0,0 @@ -[2019-12-04 05:12:46.879] Starting up round ID . - - ------------------------- diff --git a/data/logs/2019/12/04/round-00.12.46/qdel.log b/data/logs/2019/12/04/round-00.12.46/qdel.log deleted file mode 100644 index 7cfcd6ed..00000000 --- a/data/logs/2019/12/04/round-00.12.46/qdel.log +++ /dev/null @@ -1,2 +0,0 @@ -[2019-12-04 05:12:46.881] Starting up round ID . - - ------------------------- diff --git a/data/logs/2019/12/04/round-00.12.46/runtime.log b/data/logs/2019/12/04/round-00.12.46/runtime.log deleted file mode 100644 index e521a1c2..00000000 --- a/data/logs/2019/12/04/round-00.12.46/runtime.log +++ /dev/null @@ -1,64 +0,0 @@ -[2019-12-04 05:12:46.882] Starting up round ID . - - ------------------------- -[2019-12-04 05:12:46.886] Running /tg/ revision: 2019-12-04 - - origin/master: 95e35dc714ec059af1ba4f6355f717d810b87fa6 - - HEAD: 2cbcd7d49519db45ac762495b8c325f79919db0e -[2019-12-04 05:12:47.946] Initialized Title Screen subsystem within 0 seconds! -[2019-12-04 05:12:47.947] Initialized Database subsystem within 0 seconds! -[2019-12-04 05:12:47.949] Initialized Blackbox subsystem within 0 seconds! -[2019-12-04 05:12:47.951] Initialized Server Tasks subsystem within 0 seconds! -[2019-12-04 05:12:47.953] Initialized Input subsystem within 0 seconds! -[2019-12-04 05:12:47.954] Initialized Vis contents overlays subsystem within 0 seconds! -[2019-12-04 05:12:47.976] Initialized Research subsystem within 0 seconds! -[2019-12-04 05:12:47.980] Initialized Events subsystem within 0 seconds! -[2019-12-04 05:12:47.985] Initialized Jobs subsystem within 0 seconds! -[2019-12-04 05:12:47.988] Initialized Quirks subsystem within 0 seconds! -[2019-12-04 05:12:47.998] Initialized Ticker subsystem within 0 seconds! -[2019-12-04 05:12:48.002] Loading Box Station... -[2019-12-04 05:12:53.091] Loaded Station in 5s! -[2019-12-04 05:12:54.302] Loaded Lavaland in 1.2s! -[2019-12-04 05:12:55.190] Ruin loader finished with 0 left to spend. -[2019-12-04 05:12:56.255] Ruin loader finished with 0 left to spend. -[2019-12-04 05:12:56.466] Initialized Mapping subsystem within 8.4 seconds! -[2019-12-04 05:12:56.469] Initialized Networks subsystem within 0 seconds! -[2019-12-04 05:13:00.030] ### MAP WARNING, the airlock cyclelink helper at Brig (119, 168, 2) tried to set Brig cyclelinkeddir, but it's already set! -[2019-12-04 05:13:00.071] ### MAP WARNING, the airlock cyclelink helper at Brig (119, 165, 2) tried to set Brig cyclelinkeddir, but it's already set! -[2019-12-04 05:13:12.829] Initialized Atoms subsystem within 16.4 seconds! -[2019-12-04 05:13:12.865] Initialized Language subsystem within 0 seconds! -[2019-12-04 05:13:12.978] Initialized Machines subsystem within 0.1 seconds! -[2019-12-04 05:13:13.015] Initialized Circuit subsystem within 0.1 seconds! -[2019-12-04 05:13:13.018] Initialized Disease subsystem within 0 seconds! -[2019-12-04 05:13:13.020] Initialized Jukeboxes subsystem within 0 seconds! -[2019-12-04 05:13:13.022] Initialized Medals subsystem within 0 seconds! -[2019-12-04 05:13:13.023] Initialized Processing subsystem within 0 seconds! -[2019-12-04 05:13:13.024] Initialized Night Shift subsystem within 0 seconds! -[2019-12-04 05:13:13.026] Initialized Parallax subsystem within 0 seconds! -[2019-12-04 05:13:13.214] Initialized Traumas subsystem within 0.2 seconds! -[2019-12-04 05:13:13.217] Initialized Weather subsystem within 0 seconds! -[2019-12-04 05:13:15.029] ## WARNING: There are 127 active turfs at roundstart, this is a mapping error caused by a difference of the air between the adjacent turfs. You can see its coordinates using "Mapping -> Show roundstart AT list" verb (debug verbs required) -[2019-12-04 05:13:15.044] ## WARNING: HEY! LISTEN! right now were wasted processing 127 turf(s) (connected to 837 other turfs) with atmos differences at round start. -[2019-12-04 05:13:15.241] ## WARNING: build_pipeline(): /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden added to a pipenet while still having one. (pipes leading to the same spot stacking in one turf) Nearby: (159, 121, 2) -[2019-12-04 05:13:15.242] ## WARNING: build_pipeline(): /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden added to a pipenet while still having one. (pipes leading to the same spot stacking in one turf) Nearby: (157, 121, 2) -[2019-12-04 05:13:15.243] ## WARNING: build_pipeline(): /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden added to a pipenet while still having one. (pipes leading to the same spot stacking in one turf) Nearby: (160, 121, 2) -[2019-12-04 05:13:15.245] ## WARNING: build_pipeline(): /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden added to a pipenet while still having one. (pipes leading to the same spot stacking in one turf) Nearby: (158, 121, 2) -[2019-12-04 05:13:15.246] ## WARNING: build_pipeline(): /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden added to a pipenet while still having one. (pipes leading to the same spot stacking in one turf) Nearby: (156, 121, 2) -[2019-12-04 05:13:15.247] ## WARNING: build_pipeline(): /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden added to a pipenet while still having one. (pipes leading to the same spot stacking in one turf) Nearby: (161, 121, 2) -[2019-12-04 05:13:15.249] ## WARNING: build_pipeline(): /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden added to a pipenet while still having one. (pipes leading to the same spot stacking in one turf) Nearby: (155, 121, 2) -[2019-12-04 05:13:15.251] ## WARNING: build_pipeline(): /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden added to a pipenet while still having one. (pipes leading to the same spot stacking in one turf) Nearby: (162, 121, 2) -[2019-12-04 05:13:15.252] ## WARNING: build_pipeline(): /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden added to a pipenet while still having one. (pipes leading to the same spot stacking in one turf) Nearby: (154, 121, 2) -[2019-12-04 05:13:15.253] ## WARNING: build_pipeline(): /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden added to a pipenet while still having one. (pipes leading to the same spot stacking in one turf) Nearby: (163, 121, 2) -[2019-12-04 05:13:15.257] ## WARNING: build_pipeline(): further messages about pipenets will be suppressed -[2019-12-04 05:13:15.279] Initialized Atmospherics subsystem within 2 seconds! -[2019-12-04 05:13:15.282] Initialized Atmospherics - Turfs subsystem within 0 seconds! -[2019-12-04 05:13:17.104] Initialized Assets subsystem within 1.9 seconds! -[2019-12-04 05:13:20.289] Initialized Icon Smoothing subsystem within 3.1 seconds! -[2019-12-04 05:13:20.835] Initialized Overlay subsystem within 0.6 seconds! -[2019-12-04 05:13:20.837] Initialized XKeyScore subsystem within 0 seconds! -[2019-12-04 05:13:20.840] Initialized Sticky Ban subsystem within 0 seconds! -[2019-12-04 05:13:26.753] Initialized Lighting subsystem within 5.9 seconds! -[2019-12-04 05:13:29.212] Initialized Shuttle subsystem within 2.5 seconds! -[2019-12-04 05:13:29.252] Initialized Minor Mapping subsystem within 0 seconds! -[2019-12-04 05:13:29.256] Initialized Pathfinder subsystem within 0 seconds! -[2019-12-04 05:13:29.288] Initialized Persistence subsystem within 0 seconds! -[2019-12-04 05:13:29.289] Initializations complete within 41.3 seconds! -[2019-12-04 05:13:42.801] Game start took 0s diff --git a/data/logs/2019/12/04/round-00.12.46/singulo.html b/data/logs/2019/12/04/round-00.12.46/singulo.html deleted file mode 100644 index 77f6c118..00000000 --- a/data/logs/2019/12/04/round-00.12.46/singulo.html +++ /dev/null @@ -1,13 +0,0 @@ -00:13:47 [0x20258ec] (66,129,3) || the power storage unit lost power and turned off
-00:13:47 [0x200bb6c] (130,128,3) || the power storage unit lost power and turned off
-00:13:48 [0x200ba8d] (97,125,3) || the power storage unit lost power and turned off
-00:13:48 [0x200ada6] (141,59,3) || the backup power storage unit lost power and turned off
-00:13:48 [0x200ad5e] (140,64,3) || the power storage unit lost power and turned off
-00:13:48 [0x200ad50] (140,68,3) || the power storage unit lost power and turned off
-00:13:48 [0x20093fd] (196,79,2) || the power storage unit lost power and turned off
-00:13:48 [0x20090a2] (77,82,2) || the power storage unit lost power and turned off
-00:13:48 [0x2005b2b] (186,151,2) || the power storage unit lost power and turned off
-00:13:48 [0x2005b21] (180,151,2) || the power storage unit lost power and turned off
-00:13:48 [0x200545f] (162,161,2) || the power storage unit lost power and turned off
-00:13:48 [0x20052ec] (65,164,2) || the power storage unit lost power and turned off
-00:13:55 [0x2009056] (151,83,2) || the power storage unit lost power and turned off
diff --git a/data/logs/2019/12/04/round-00.12.46/supermatter.html b/data/logs/2019/12/04/round-00.12.46/supermatter.html deleted file mode 100644 index a723ceb3..00000000 --- a/data/logs/2019/12/04/round-00.12.46/supermatter.html +++ /dev/null @@ -1 +0,0 @@ -00:13:03 [0x2009ada] (113,66,2) || the supermatter crystal has been created.
diff --git a/data/logs/2019/12/04/round-00.12.46/telecomms.log b/data/logs/2019/12/04/round-00.12.46/telecomms.log deleted file mode 100644 index 734693a2..00000000 --- a/data/logs/2019/12/04/round-00.12.46/telecomms.log +++ /dev/null @@ -1,27 +0,0 @@ -[2019-12-04 05:12:46.879] Starting up round ID . - - ------------------------- -[2019-12-04 05:13:47.870] TCOMMS: The �Automated Announcement System [Common] (spans: robot ) "Alessandra Joghs has signed up as Chief Medical Officer" (language: Galactic Common) (Telecomms Control Room (107, 93, 2)) -[2019-12-04 05:13:54.985] TCOMMS: The �Automated Announcement System [Medical] (spans: robot ) "Alessandra Joghs, Chief Medical Officer, is the department head." (language: Galactic Common) (Telecomms Control Room (107, 93, 2)) -[2019-12-04 05:13:57.098] TCOMMS: *no key*/(Poly) [Engineering] (spans: ) "WHO TOOK THE DAMN HARDSUITS?" (language: Galactic Common) (Chief Engineer's Office (117, 83, 2)) -[2019-12-04 05:14:11.181] TCOMMS: *no key*/(Poly) [Engineering] (spans: ) "OH GOD ITS ABOUT TO DELAMINATE CALL THE SHUTTLE" (language: Galactic Common) (Chief Engineer's Office (116, 83, 2)) -[2019-12-04 05:14:19.180] TCOMMS: *no key*/(Poly) [Engineering] (spans: ) "Wire the solars, you lazy bums!" (language: Galactic Common) (Chief Engineer's Office (115, 81, 2)) -[2019-12-04 05:14:41.179] TCOMMS: *no key*/(Poly) [Engineering] (spans: ) "WHO TOOK THE DAMN HARDSUITS?" (language: Galactic Common) (Chief Engineer's Office (115, 81, 2)) -[2019-12-04 05:16:39.176] TCOMMS: *no key*/(Poly) [Engineering] (spans: ) "Poly wanna cracker!" (language: Galactic Common) (Chief Engineer's Office (115, 81, 2)) -[2019-12-04 05:16:51.175] TCOMMS: *no key*/(Poly) [Engineering] (spans: ) "OH GOD ITS ABOUT TO DELAMINATE CALL THE SHUTTLE" (language: Galactic Common) (Chief Engineer's Office (115, 81, 2)) -[2019-12-04 05:16:53.178] TCOMMS: *no key*/(Poly) [Engineering] (spans: ) "OH GOD ITS ABOUT TO DELAMINATE CALL THE SHUTTLE" (language: Galactic Common) (Chief Engineer's Office (115, 81, 2)) -[2019-12-04 05:17:05.176] TCOMMS: *no key*/(Poly) [Engineering] (spans: ) "Wire the solars, you lazy bums!" (language: Galactic Common) (Chief Engineer's Office (115, 81, 2)) -[2019-12-04 05:17:49.179] TCOMMS: *no key*/(Poly) [Engineering] (spans: ) "Wire the solars, you lazy bums!" (language: Galactic Common) (Chief Engineer's Office (115, 81, 2)) -[2019-12-04 05:17:59.175] TCOMMS: *no key*/(Poly) [Engineering] (spans: ) "Check the crystal, you chucklefucks!" (language: Galactic Common) (Chief Engineer's Office (116, 79, 2)) -[2019-12-04 05:18:07.178] TCOMMS: *no key*/(Poly) [Engineering] (spans: ) "Check the crystal, you chucklefucks!" (language: Galactic Common) (Chief Engineer's Office (116, 79, 2)) -[2019-12-04 05:18:39.175] TCOMMS: *no key*/(Poly) [Engineering] (spans: ) "I have lived many lives!" (language: Galactic Common) (Chief Engineer's Office (115, 81, 2)) -[2019-12-04 05:19:13.175] TCOMMS: *no key*/(Poly) [Engineering] (spans: ) "Check the crystal, you chucklefucks!" (language: Galactic Common) (Chief Engineer's Office (116, 79, 2)) -[2019-12-04 05:21:01.175] TCOMMS: *no key*/(Poly) [Engineering] (spans: ) "WHO TOOK THE DAMN HARDSUITS?" (language: Galactic Common) (Chief Engineer's Office (115, 81, 2)) -[2019-12-04 05:21:53.175] TCOMMS: *no key*/(Poly) [Engineering] (spans: ) "Wire the solars, you lazy bums!" (language: Galactic Common) (Chief Engineer's Office (116, 79, 2)) -[2019-12-04 05:22:05.176] TCOMMS: *no key*/(Poly) [Engineering] (spans: ) "Wire the solars, you lazy bums!" (language: Galactic Common) (Chief Engineer's Office (116, 81, 2)) -[2019-12-04 05:22:19.176] TCOMMS: *no key*/(Poly) [Engineering] (spans: ) "Check the crystal, you chucklefucks!" (language: Galactic Common) (Chief Engineer's Office (118, 80, 2)) -[2019-12-04 05:22:49.175] TCOMMS: *no key*/(Poly) [Engineering] (spans: ) "Check the crystal, you chucklefucks!" (language: Galactic Common) (Chief Engineer's Office (115, 81, 2)) -[2019-12-04 05:23:07.177] TCOMMS: *no key*/(Poly) [Engineering] (spans: ) "Wire the solars, you lazy bums!" (language: Galactic Common) (Chief Engineer's Office (115, 81, 2)) -[2019-12-04 05:23:08.090] TCOMMS: The cloning pod [Medical] (spans: robot ) "The cloning cycle is complete." (language: Galactic Common) (Genetics Lab (155, 113, 2)) -[2019-12-04 05:23:15.176] TCOMMS: *no key*/(Poly) [Engineering] (spans: ) "OH GOD ITS ABOUT TO DELAMINATE CALL THE SHUTTLE" (language: Galactic Common) (Chief Engineer's Office (116, 79, 2)) -[2019-12-04 05:23:19.176] TCOMMS: *no key*/(Poly) [Engineering] (spans: ) "OH GOD ITS ABOUT TO DELAMINATE CALL THE SHUTTLE" (language: Galactic Common) (Chief Engineer's Office (116, 79, 2)) -[2019-12-04 05:23:21.174] TCOMMS: *no key*/(Poly) [Engineering] (spans: ) "Wire the solars, you lazy bums!" (language: Galactic Common) (Chief Engineer's Office (116, 79, 2)) From dda5966357ad2e78dd7db6274577237c779be8ce Mon Sep 17 00:00:00 2001 From: Toast Date: Wed, 4 Dec 2019 00:26:41 -0500 Subject: [PATCH 10/11] Still borked --- code/game/machinery/cloning.dm | 2 +- code/game/machinery/computer/cloning.dm | 19 +++++++++---------- 2 files changed, 10 insertions(+), 11 deletions(-) diff --git a/code/game/machinery/cloning.dm b/code/game/machinery/cloning.dm index 83f367c7..e2314589 100644 --- a/code/game/machinery/cloning.dm +++ b/code/game/machinery/cloning.dm @@ -149,7 +149,7 @@ return examine(user) //Start growing a human clone in the pod! -/obj/machinery/clonepod/proc/growclone(clonename, ui, mutation_index, mindref, last_death, blood_type, datum/species/mrace, list/features, factions, list/quirks, datum/bank_account/insurance, list/traumas, empty) +/obj/machinery/clonepod/proc/growclone(clonename, ui, mutation_index, mindref, last_death, blood_type, datum/species/mrace, list/features, factions, list/quirks, empty) if(panel_open) return FALSE if(mess || attempting) diff --git a/code/game/machinery/computer/cloning.dm b/code/game/machinery/computer/cloning.dm index 120b04dc..3495417b 100644 --- a/code/game/machinery/computer/cloning.dm +++ b/code/game/machinery/computer/cloning.dm @@ -60,8 +60,7 @@ . = pod /proc/grow_clone_from_record(obj/machinery/clonepod/pod, datum/data/record/R, empty) - return pod.growclone(R.fields["ckey"], R.fields["name"], R.fields["UI"], R.fields["SE"], R.fields["mind"], R.fields["last_death"], R.fields["blood_type"], R.fields["mrace"], R.fields["features"], R.fields["factions"], R.fields["quirks"], empty) -//If for some reason this doesn't work, re-adding the Ckey field next commit ~Synn + return pod.growclone(R.fields["name"], R.fields["UI"], R.fields["SE"], R.fields["mindref"], R.fields["last_death"], R.fields["blood_type"], R.fields["mrace"], R.fields["features"], R.fields["factions"], R.fields["quirks"], empty) /obj/machinery/computer/cloning/process() if(!(scanner && LAZYLEN(pods) && autoprocess)) @@ -71,13 +70,13 @@ scan_occupant(scanner.occupant) for(var/datum/data/record/R in records) - var/obj/machinery/clonepod/pod = GetAvailableEfficientPod(R.fields["mind"]) + var/obj/machinery/clonepod/pod = GetAvailableEfficientPod(R.fields["mindref"]) if(!pod) return if(pod.occupant) - break + continue var/result = grow_clone_from_record(pod, R) if(result & CLONING_SUCCESS) @@ -514,10 +513,10 @@ scantemp = "Mental interface failure." playsound(src, 'sound/machines/terminal_prompt_deny.ogg', 50, 0) return - if (find_record("ckey", mob_occupant.ckey, records)) - scantemp = "Subject already in database." - playsound(src, 'sound/machines/terminal_prompt_deny.ogg', 50, 0) - return +// if (find_record("ckey", mob_occupant.ckey, records)) +// scantemp = "Subject already in database." +// playsound(src, 'sound/machines/terminal_prompt_deny.ogg', 50, 0) +// return var/datum/data/record/R = new() if(dna.species) @@ -530,7 +529,7 @@ var/datum/species/rando_race = pick(GLOB.roundstart_races) R.fields["mrace"] = rando_race.type - R.fields["ckey"] = mob_occupant.ckey + //R.fields["ckey"] = mob_occupant.ckey R.fields["name"] = mob_occupant.real_name R.fields["id"] = copytext(md5(mob_occupant.real_name), 2, 6) R.fields["UE"] = dna.unique_enzymes @@ -544,7 +543,7 @@ var/datum/quirk/T = V R.fields["quirks"][T.type] = T.clone_data() - R.fields["mind"] = "[REF(mob_occupant.mind)]" + R.fields["mindref"] = "[REF(mob_occupant.mind)]" R.fields["last_death"] = mob_occupant.stat == DEAD ? mob_occupant.mind.last_death : -1 R.fields["body_only"] = body_only From e36e351e20daa80a727821f7d9943da52c366cee Mon Sep 17 00:00:00 2001 From: Toast Date: Wed, 4 Dec 2019 01:19:53 -0500 Subject: [PATCH 11/11] CLONING_SUCCESS CLONING_SUCCESS CLONING_SUCCESS CLONING_SUCCESS CLONING_SUCCESS CLONING_SUCCESS CLONING_SUCCESS --- code/game/machinery/cloning.dm | 6 +++--- code/game/machinery/computer/cloning.dm | 7 ++++--- 2 files changed, 7 insertions(+), 6 deletions(-) diff --git a/code/game/machinery/cloning.dm b/code/game/machinery/cloning.dm index e2314589..a70c1068 100644 --- a/code/game/machinery/cloning.dm +++ b/code/game/machinery/cloning.dm @@ -19,7 +19,7 @@ circuit = /obj/item/circuitboard/machine/clonepod var/heal_level //The clone is released once its health reaches this level. - var/obj/machinery/computer/cloning/connected = null //So we remember the connected clone machine. + var/obj/machinery/computer/cloning/connected //So we remember the connected clone machine. var/mess = FALSE //Need to clean out it if it's full of exploded clone. var/attempting = FALSE //One clone attempt at a time thanks var/speed_coeff @@ -122,7 +122,7 @@ //Clonepod /obj/machinery/clonepod/examine(mob/user) - ..() + . = ..() var/mob/living/mob_occupant = occupant if(mess) to_chat(user, "It's filled with blood and viscera. You swear you can see it moving...") @@ -237,7 +237,7 @@ H.suiciding = FALSE attempting = FALSE - return TRUE + return CLONING_SUCCESS //Grow clones to maturity then kick them out. FREELOADERS /obj/machinery/clonepod/process() diff --git a/code/game/machinery/computer/cloning.dm b/code/game/machinery/computer/cloning.dm index 3495417b..dede5724 100644 --- a/code/game/machinery/computer/cloning.dm +++ b/code/game/machinery/computer/cloning.dm @@ -7,7 +7,7 @@ icon_keyboard = "med_key" circuit = /obj/item/circuitboard/computer/cloning req_access = list(ACCESS_HEADS) //ONLY USED FOR RECORD DELETION RIGHT NOW. - var/obj/machinery/dna_scannernew/scanner = null //Linked scanner. For scanning. + var/obj/machinery/dna_scannernew/scanner //Linked scanner. For scanning. var/list/pods //Linked cloning pods var/temp = "Inactive" var/scantemp_ckey @@ -490,11 +490,12 @@ var/datum/dna/dna // Do not use unless you know what they are. + var/mob/living/carbon/C = mob_occupant + var/mob/living/brain/B = mob_occupant + if(ishuman(mob_occupant)) - var/mob/living/carbon/C = mob_occupant dna = C.has_dna() if(isbrain(mob_occupant)) - var/mob/living/brain/B = mob_occupant dna = B.stored_dna if(!istype(dna))