Merge pull request #902 from EmperorJon/05_Feb._Spaceheater_buff

Space heater buff
This commit is contained in:
Neerti
2016-02-05 20:45:12 -05:00

View File

@@ -6,6 +6,7 @@
name = "space heater"
desc = "Made by Space Amish using traditional space techniques, this heater is guaranteed not to set the station on fire."
var/obj/item/weapon/cell/cell
var/cell_type = /obj/item/weapon/cell/apc
var/on = 0
var/set_temperature = T0C + 50 //K
var/heating_power = 40000
@@ -13,7 +14,8 @@
/obj/machinery/space_heater/New()
..()
cell = new(src)
if (cell_type)
src.cell = new cell_type(src)
update_icon()
/obj/machinery/space_heater/update_icon()