Add chomp pointers & correct typos

This commit is contained in:
lbnesquik
2020-01-22 08:49:46 +01:00
parent 83eeb5f5d7
commit b93e2c2a96

View File

@@ -34,13 +34,15 @@
/obj/structure/bonfire/permanent/sifwood/New(newloc, material_name)
..(newloc, MAT_SIFWOOD)
//CHOMPStation Addition Start
/obj/structure/bonfire/examine(mob/user)
var/X = get_fuel_amount()
user << "The fire has [X] burning logs in it."
user << "The fire has [X] logs in it."
if(grill)
user << "The [src] has a crude grill plate over it."
if(stake)
user << "The [src] has a makeshift stake plate over it, perfect for witches and space templars."
to_chat(user, "[src] has a crude grill plate over it.")
if(can_buckle)
user << "[src] has a makeshift stake built in it, perfect for witches and space templars."
//CHOMPStation Addition end
/obj/structure/bonfire/attackby(obj/item/W, mob/user)
if(istype(W, /obj/item/stack/rods) && !can_buckle && !grill)