diff --git a/code/modules/customitems/item_defines.dm b/code/modules/customitems/item_defines.dm index 42303a4ef04..4ab7583b3f9 100644 --- a/code/modules/customitems/item_defines.dm +++ b/code/modules/customitems/item_defines.dm @@ -567,14 +567,14 @@ /obj/item/weapon/fluff/dancebutton //DesolateG: Micheal Smith - name = "Big Red Button" - desc = "This button looks almost too tempting to press." + name = "Instant Party Button" + desc = "The instructions on the bottom seem to indicate that pressing the button will bring out the Dancing Machine in you." icon = 'icons/obj/assemblies.dmi' icon_state = "bigred" force = 2 /obj/item/weapon/fluff/dancebutton/attack_self(mob/user) - user.visible_message("[user] presses the button.", "You press the button.") + user.visible_message("[user] presses the [src].", "You press the [src].") var/obj/machinery/disco/C = new /obj/machinery/disco(get_turf(user)) C.visible_message("[C] suddenly winks into existence where [user]is standing!") to_chat(user, "The [src] disapears from your hands!")