Removes some words to avoid possible problems with github terms of service (#8695)

This commit is contained in:
Alberyk
2020-04-22 16:29:56 -03:00
committed by GitHub
parent a91fed131a
commit 084d38fe2f
12 changed files with 14 additions and 22 deletions
@@ -189,7 +189,6 @@
//TODO: DEFERRED Consider checking to make sure tank pressure is high enough before doing this...
//Transfer 5% of current tank air contents to turf
var/datum/gas_mixture/air_transfer = ptank.air_contents.remove_ratio(0.02*(throw_amount/100))
//air_transfer.toxins = air_transfer.toxins * 5 // This is me not comprehending the air system. I realize this is retarded and I could probably make it work without fucking it up like this, but there you have it. -- TLE
new/obj/effect/decal/cleanable/liquid_fuel/flamethrower_fuel(target,air_transfer.gas["phoron"]*15,get_dir(loc,target))
air_transfer.gas["phoron"] = 0
target.assume_air(air_transfer)