Garbage Collect Everything

This commit is contained in:
Fox-McCloud
2015-10-13 20:23:26 -04:00
parent 092185e47b
commit e60edf9345
10 changed files with 14 additions and 27 deletions
-4
View File
@@ -53,10 +53,6 @@ What are the archived variables for?
var/tmp/fuel_burnt = 0
/datum/gas_mixture/Destroy()
..()
return QDEL_HINT_QUEUE
//PV=nRT - related procedures
/datum/gas_mixture/proc/heat_capacity()
var/heat_capacity = HEAT_CAPACITY_CALCULATION(oxygen,carbon_dioxide,nitrogen,toxins)
+1 -2
View File
@@ -41,8 +41,7 @@
/datum/material_container/Destroy()
owner = null
..()
return QDEL_HINT_QUEUE
return ..()
//For inserting an amount of material
/datum/material_container/proc/insert_amount(amt, material_type = null)
+1 -2
View File
@@ -48,8 +48,7 @@ var/list/wireColours = list("red", "blue", "green", "black", "orange", "brown",
/datum/wires/Destroy()
holder = null
..()
return QDEL_HINT_QUEUE
return ..()
/datum/wires/proc/GenerateWires()
var/list/colours_to_pick = wireColours.Copy() // Get a copy, not a reference.