diff --git a/code/modules/spells/targeted/cleric_spells.dm b/code/modules/spells/targeted/cleric_spells.dm index f168bd08964..7acd38c887f 100644 --- a/code/modules/spells/targeted/cleric_spells.dm +++ b/code/modules/spells/targeted/cleric_spells.dm @@ -225,7 +225,7 @@ to_chat(user, "This spell can't affect non-organics.") return 0 - if((world.time - target.timeofdeath) > 3000) + if((world.time - target.timeofdeath) > 30 MINUTES) to_chat(user, "\The [target]'s soul is too far away from your grasp.") return 0 diff --git a/code/modules/spells/targeted/mindcontrol.dm b/code/modules/spells/targeted/mindcontrol.dm index 59a5cb5bbf1..74f6f6b1150 100644 --- a/code/modules/spells/targeted/mindcontrol.dm +++ b/code/modules/spells/targeted/mindcontrol.dm @@ -49,14 +49,12 @@ user.visible_message("\The [user] seizes the head of \the [H] in both hands...") to_chat(user, "You invade the mind of \the [H]!") - to_chat(H, "Your mind is invaded by the presence of \the [user]! They are trying to make you a slave!") + to_chat(H, "Your mind is invaded by the presence of \the [user]! You feel painful tendrils burrowing their way into your head!") if (!do_mob(user, H, 80)) to_chat(user, "Your concentration is broken!") return FALSE - F.lobotomize() - if(wizards.add_antagonist_mind(target.mind,1,"Wizard Slave","You are a slave to \the [user], obey them at all costs!")) to_chat(user, "You sear through \the [H]'s mind, reshaping as you see fit and leaving them subservient to your will!") H.mind.assigned_role = "Wizard Slave" diff --git a/html/changelogs/MDP-apologeticwizardbuffs.yml b/html/changelogs/MDP-apologeticwizardbuffs.yml new file mode 100644 index 00000000000..a46c69c4f4b --- /dev/null +++ b/html/changelogs/MDP-apologeticwizardbuffs.yml @@ -0,0 +1,42 @@ +################################ +# Example Changelog File +# +# Note: This file, and files beginning with ".", and files that don't end in ".yml" will not be read. If you change this file, you will look really dumb. +# +# Your changelog will be merged with a master changelog. (New stuff added only, and only on the date entry for the day it was merged.) +# When it is, any changes listed below will disappear. +# +# Valid Prefixes: +# bugfix +# wip (For works in progress) +# tweak +# soundadd +# sounddel +# rscadd (general adding of nice things) +# rscdel (general deleting of nice things) +# imageadd +# imagedel +# maptweak +# spellcheck (typo fixes) +# experiment +# balance +# admin +# backend +# security +# refactor +################################# + +# Your name. +author: MoondancerPony + +# Optional: Remove this file after generating master changelog. Useful for PR changelogs that won't get used again. +delete-after: True + +# Any changes you've made. See valid prefix list above. +# INDENT WITH TWO SPACES. NOT TABS. SPACES. +# SCREW THIS UP AND IT WON'T WORK. +# Also, all entries are changed into a single [] after a master changelog generation. Just remove the brackets when you add new entries. +# Please surround your changes in double quotes ("), as certain characters otherwise screws up compiling. The quotes will not show up in the changelog. +changes: + - tweak: "Mindslaves are no longer lobotomised; they're more like vampire thralls." + - tweak: "Extends the cleric resurrection time limit to 30 minutes instead of 5."