Organ and Autopsy Qdel Fixes and Minor Organ Tweaks (#7201)

* Organ and Autopsy Qdel Fixes

* organ tweaks

* tweaks
This commit is contained in:
Fox McCloud
2017-05-06 15:26:45 -07:00
committed by Crazy Lemon
parent 3423a191b5
commit 8d4cc7b645
9 changed files with 54 additions and 107 deletions
+9 -1
View File
@@ -7,16 +7,24 @@
w_class = WEIGHT_CLASS_TINY
origin_tech = "materials=1;biotech=1"
var/list/datum/autopsy_data_scanner/wdata = list()
var/list/datum/autopsy_data_scanner/chemtraces = list()
var/list/chemtraces = list()
var/target_name = null
var/timeofdeath = null
/obj/item/weapon/autopsy_scanner/Destroy()
QDEL_LIST_ASSOC_VAL(wdata)
return ..()
/datum/autopsy_data_scanner
var/weapon = null // this is the DEFINITE weapon type that was used
var/list/organs_scanned = list() // this maps a number of scanned organs to
// the wounds to those organs with this data's weapon type
var/organ_names = ""
/datum/autopsy_data_scanner/Destroy()
QDEL_LIST_ASSOC_VAL(organs_scanned)
return ..()
/datum/autopsy_data
var/weapon = null
var/pretend_weapon = null