fix bonfire examine (#9770)

This commit is contained in:
Kashargul
2025-01-03 03:12:19 +01:00
committed by GitHub
parent b7dc5cf4d4
commit e40fc670c2

View File

@@ -36,12 +36,13 @@
//CHOMPStation Addition Start
/obj/structure/bonfire/examine(mob/user)
. = ..()
var/X = get_fuel_amount()
to_chat(user, "The fire has [X] logs in it.")
. += "The fire has [X] logs in it."
if(grill)
to_chat(user, "[src] has a crude grill plate over it.")
. += "[src] has a crude grill plate over it."
if(can_buckle)
to_chat(user, "[src] has a makeshift stake built in it, perfect for witches and space templars.")
. += "[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)