mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-08-27 14:08:44 +01:00
Flammable Items, Abstractness, and hypnosis (#19267)
* Laser Eyes * Update dna.dm * Mecha * Update positive_genes.dm * These * These 2 * yeh * Rest of these * Update turf.dm * Update food.dm * Some moar * mooove * Update vorestation.dme * Update burning.dm * firesuit * flags * HYPNOCOLOR * xd * no filter * dc * Update ore_bag.dm * Update misc.dm * Update misc.dm
This commit is contained in:
@@ -18,7 +18,7 @@
|
||||
return nozzle.get_thrust()
|
||||
|
||||
/datum/ship_engine/gas_thruster/burn()
|
||||
return nozzle.burn()
|
||||
return nozzle.thrust_burn()
|
||||
|
||||
/datum/ship_engine/gas_thruster/set_thrust_limit(var/new_limit)
|
||||
nozzle.thrust_limit = new_limit
|
||||
@@ -145,7 +145,7 @@
|
||||
A = get_step(A, exhaust_dir)
|
||||
return blockage
|
||||
|
||||
/obj/machinery/atmospherics/unary/engine/proc/burn()
|
||||
/obj/machinery/atmospherics/unary/engine/proc/thrust_burn()
|
||||
if(!is_on())
|
||||
return 0
|
||||
if(!check_fuel() || (use_power_oneoff(charge_per_burn) < charge_per_burn) || check_blockage())
|
||||
|
||||
@@ -17,7 +17,7 @@
|
||||
return thruster.get_thrust()
|
||||
|
||||
/datum/ship_engine/ion/burn()
|
||||
return thruster.burn()
|
||||
return thruster.thrust_burn()
|
||||
|
||||
/datum/ship_engine/ion/set_thrust_limit(var/new_limit)
|
||||
thruster.thrust_limit = new_limit
|
||||
@@ -69,7 +69,7 @@
|
||||
if(!powered())
|
||||
.+= list(list("Insufficient power to operate.", "bad"))
|
||||
|
||||
/obj/machinery/ion_engine/proc/burn()
|
||||
/obj/machinery/ion_engine/proc/thrust_burn()
|
||||
if(!on && !powered())
|
||||
return 0
|
||||
use_power_oneoff(burn_cost)
|
||||
|
||||
Reference in New Issue
Block a user