diff --git a/code/game/objects/structures/bonfire.dm b/code/game/objects/structures/bonfire.dm index 30f39421d6..87dc47aa0d 100644 --- a/code/game/objects/structures/bonfire.dm +++ b/code/game/objects/structures/bonfire.dm @@ -37,11 +37,11 @@ //CHOMPStation Addition Start /obj/structure/bonfire/examine(mob/user) var/X = get_fuel_amount() - user << "The fire has [X] logs in it." + to_chat(user, "The fire has [X] logs in it.") if(grill) 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." + to_chat(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)