Fixed compile errors.

This commit is contained in:
Fermi
2019-06-13 03:05:34 +01:00
parent 981c1644c9
commit eab52a51e6
6 changed files with 16 additions and 15 deletions
+1 -1
View File
@@ -3,7 +3,7 @@
message = trauma.on_say(message)
message = ..(message)
/obj/item/organ/vocal_cords/velvet/Vc = getorganslot(ORGAN_SLOT_VOICE)
var/obj/item/organ/vocal_cords/velvet/Vc = getorganslot(ORGAN_SLOT_VOICE)
if(Vc)
velvetspeech(message, src)
+4 -4
View File
@@ -34,10 +34,10 @@
var/overdosed = 0 // You fucked up and this is now triggering its overdose effects, purge that shit quick.
var/self_consuming = FALSE
//Fermichem vars:
var/purity = 1
var/addProc = FALSE
var/loc = null //Should be the creation location!
var/pH = 7
var/purity = 1 //How pure a chemical is from 0 - 1.
var/addProc = FALSE //If the chemical should force an on_new() call
var/turf/loc = null //Should be the creation location!
var/pH = 7 //pH of the specific reagent, used for calculating the sum pH of a holder.
/datum/reagent/Destroy() // This should only be called by the holder, so it's already handled clearing its references
. = ..()