mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-07-21 03:55:05 +01:00
Temporary exploit fix pending permanant solution from upstream. Thanks for the find!
This commit is contained in:
@@ -1473,19 +1473,19 @@ datum
|
||||
if (egg.grown)
|
||||
egg.Hatch()*/
|
||||
if((!O) || (!volume)) return 0
|
||||
var/turf/the_turf = get_turf(O)
|
||||
var/datum/gas_mixture/napalm = new
|
||||
var/datum/gas/volatile_fuel/fuel = new
|
||||
fuel.moles = 5
|
||||
napalm.trace_gases += fuel
|
||||
the_turf.assume_air(napalm)
|
||||
// var/turf/the_turf = get_turf(O)
|
||||
// var/datum/gas_mixture/napalm = new
|
||||
// var/datum/gas/volatile_fuel/fuel = new
|
||||
// fuel.moles = 5
|
||||
// napalm.trace_gases += fuel
|
||||
// the_turf.assume_air(napalm)
|
||||
reaction_turf(var/turf/T, var/volume)
|
||||
src = null
|
||||
var/datum/gas_mixture/napalm = new
|
||||
var/datum/gas/volatile_fuel/fuel = new
|
||||
fuel.moles = 5
|
||||
napalm.trace_gases += fuel
|
||||
T.assume_air(napalm)
|
||||
// var/datum/gas_mixture/napalm = new
|
||||
// var/datum/gas/volatile_fuel/fuel = new
|
||||
// fuel.moles = 5
|
||||
// napalm.trace_gases += fuel
|
||||
// T.assume_air(napalm)
|
||||
return
|
||||
reaction_mob(var/mob/living/M, var/method=TOUCH, var/volume)//Splashing people with plasma is stronger than fuel!
|
||||
if(!istype(M, /mob/living))
|
||||
|
||||
@@ -421,15 +421,15 @@ datum
|
||||
var/turf/location = get_turf(holder.my_atom.loc)
|
||||
for(var/turf/simulated/floor/target_tile in range(0,location))
|
||||
|
||||
var/datum/gas_mixture/napalm = new
|
||||
var/datum/gas/volatile_fuel/fuel = new
|
||||
fuel.moles = created_volume
|
||||
napalm.trace_gases += fuel
|
||||
// var/datum/gas_mixture/napalm = new
|
||||
// var/datum/gas/volatile_fuel/fuel = new
|
||||
// fuel.moles = created_volume
|
||||
// napalm.trace_gases += fuel
|
||||
|
||||
napalm.temperature = 400+T0C
|
||||
napalm.update_values()
|
||||
// napalm.temperature = 400+T0C
|
||||
// napalm.update_values()
|
||||
|
||||
target_tile.assume_air(napalm)
|
||||
// target_tile.assume_air(napalm)
|
||||
spawn (0) target_tile.hotspot_expose(700, 400)
|
||||
holder.del_reagent("napalm")
|
||||
return
|
||||
|
||||
Reference in New Issue
Block a user