adds cool and fun new interactable environmental object

This commit is contained in:
DESKTOP-4BUBN9N\Mike
2021-03-06 18:39:48 +00:00
parent e236746acd
commit fcf6cd9f14
2 changed files with 12 additions and 0 deletions
@@ -134,6 +134,18 @@
/obj/structure/reagent_dispensers/foam/Initialize()
. = ..()
reagents.add_reagent("firefoam",1000)
/obj/structure/reagent_dispensers/fueltank/barrel
name = "hazardous barrel"
desc = "An open-topped barrel full of nasty-looking liquid."
icon_state = "barrel"
modded = TRUE
/obj/structure/reagent_dispensers/fueltank/barrel/attackby(obj/item/weapon/W as obj, mob/user as mob)
if (W.is_wrench()) //can't wrench it shut, it's always open
return
return ..()
//VOREStation Add End