From 358f0624996f5e65fdbcac4ce2f9d705d5bf4ff9 Mon Sep 17 00:00:00 2001
From: Qwertytoforty <52090703+Qwertytoforty@users.noreply.github.com>
Date: Mon, 4 Nov 2024 13:22:34 -0500
Subject: [PATCH] pulse demon summoner warns better (#27137)
* pulse demon summoner warns better
* Update antag_spawner.dm
* Update code/modules/antagonists/_common/antag_spawner.dm
Co-authored-by: DGamerL <108773801+DGamerL@users.noreply.github.com>
Signed-off-by: Qwertytoforty <52090703+Qwertytoforty@users.noreply.github.com>
* Update code/game/gamemodes/wizard/spellbook.dm
Co-authored-by: DGamerL <108773801+DGamerL@users.noreply.github.com>
Signed-off-by: Qwertytoforty <52090703+Qwertytoforty@users.noreply.github.com>
---------
Signed-off-by: Qwertytoforty <52090703+Qwertytoforty@users.noreply.github.com>
Co-authored-by: DGamerL <108773801+DGamerL@users.noreply.github.com>
---
code/game/gamemodes/wizard/spellbook.dm | 2 +-
code/modules/antagonists/_common/antag_spawner.dm | 4 ++--
2 files changed, 3 insertions(+), 3 deletions(-)
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)