You can now fasten the TEG circulators, to make your own TEG

This commit is contained in:
Crazylemon64
2016-05-21 14:33:05 -07:00
parent 0c85e809be
commit b44b40d387
2 changed files with 16 additions and 3 deletions
@@ -66,3 +66,13 @@
icon_state = "circ-off"
return 1
/obj/machinery/atmospherics/binary/circulator/attackby(var/obj/item/W as obj, var/mob/user as mob, params)
if(istype(W, /obj/item/weapon/wrench))
var/turf/T = get_turf(src)
if(!istype(T, /turf/simulated))
return ..()
anchored = !anchored
to_chat(user, "You [(anchored) ? "fasten" : "loosen"] \the [src] to the floor")
playsound(src.loc, 'sound/items/Ratchet.ogg', 50, 1)
else return ..()