diff --git a/code/game/gamemodes/wizard/spellbook.dm b/code/game/gamemodes/wizard/spellbook.dm index 3dce596278e..624ac346f7b 100644 --- a/code/game/gamemodes/wizard/spellbook.dm +++ b/code/game/gamemodes/wizard/spellbook.dm @@ -622,7 +622,7 @@ /datum/spellbook_entry/item/pulsedemonbottle name = "Living Lightbulb" - desc = "A magically sealed lightbulb confining some manner of electricity based creature. Beware, these creatures are indiscriminate in their shocking antics, and you yourself may become a victim." + desc = "A magically sealed lightbulb confining some manner of electricity based creature. Beware, these creatures are indiscriminate in their shocking antics, and you yourself may become a victim. It is *heavily* advised not to summon it in maintenance areas." item_path = /obj/item/antag_spawner/pulse_demon category = "Summons" limit = 3 diff --git a/code/modules/antagonists/_common/antag_spawner.dm b/code/modules/antagonists/_common/antag_spawner.dm index 2c37ec951b8..51648d39044 100644 --- a/code/modules/antagonists/_common/antag_spawner.dm +++ b/code/modules/antagonists/_common/antag_spawner.dm @@ -398,7 +398,7 @@ /obj/item/antag_spawner/pulse_demon name = "living lightbulb" - desc = "A magically sealed lightbulb confining some manner of electricity based creature." + desc = "A magically sealed lightbulb confining some manner of electricity based creature. It is *heavily* advised not to summon it in maintenance areas." icon = 'icons/obj/lighting.dmi' icon_state = "lbulb" var/shatter_msg = "You shatter the bulb, no turning back now!" @@ -422,7 +422,7 @@ return used = TRUE - to_chat(user, "You break the seal on the bulb, waiting for the creature to spark to life...") + to_chat(user, "You break the seal on the bulb, waiting for the creature to spark to life... you might wish to get to safety!") var/list/candidates = SSghost_spawns.poll_candidates("Do you want to play as a pulse demon summoned by [user.real_name]?", ROLE_DEMON, TRUE, 10 SECONDS, source = demon_type)