diff --git a/code/datums/antagonists/datum_clockcult.dm b/code/datums/antagonists/datum_clockcult.dm index d353ae1b913..c113d0d46c1 100644 --- a/code/datums/antagonists/datum_clockcult.dm +++ b/code/datums/antagonists/datum_clockcult.dm @@ -43,7 +43,7 @@ addtimer(ticker.mode, "replace_jobbaned_player", 0, TIMER_NORMAL, owner, ROLE_SERVANT_OF_RATVAR, ROLE_SERVANT_OF_RATVAR) if(owner.mind) owner.mind.special_role = "Servant of Ratvar" - owner.attack_log += "\[[time_stamp()]\] Has been converted to the cult of Ratvar!" + owner.attack_log += "\[[time_stamp()]\] Has been converted to the cult of Ratvar!" if(issilicon(owner)) var/mob/living/silicon/S = owner if(iscyborg(S) && !silent_update) @@ -146,7 +146,7 @@ if(owner.mind) owner.mind.wipe_memory() owner.mind.special_role = null - owner.attack_log += "\[[time_stamp()]\] Has renounced the cult of Ratvar!" + owner.attack_log += "\[[time_stamp()]\] Has renounced the cult of Ratvar!" if(iscyborg(owner)) owner << "Despite your freedom from Ratvar's influence, you are still irreparably damaged and no longer possess certain functions such as AI linking." ..() diff --git a/code/datums/antagonists/datum_cult.dm b/code/datums/antagonists/datum_cult.dm index 9451871280d..326f4fdbbdb 100644 --- a/code/datums/antagonists/datum_cult.dm +++ b/code/datums/antagonists/datum_cult.dm @@ -23,7 +23,7 @@ addtimer(ticker.mode, "replace_jobbaned_player", 0, TIMER_NORMAL, owner, ROLE_CULTIST, ROLE_CULTIST) if(owner.mind) owner.mind.special_role = "Cultist" - owner.attack_log += "\[[time_stamp()]\] Has been converted to the cult of Nar'Sie!" + owner.attack_log += "\[[time_stamp()]\] Has been converted to the cult of Nar'Sie!" ..() /datum/antagonist/cultist/apply_innate_effects() @@ -44,7 +44,7 @@ ticker.mode.cult -= owner.mind ticker.mode.update_cult_icons_removed(owner.mind) owner << "An unfamiliar white light flashes through your mind, cleansing the taint of the Dark One and all your memories as its servant." - owner.attack_log += "\[[time_stamp()]\] Has renounced the cult of Nar'Sie!" + owner.attack_log += "\[[time_stamp()]\] Has renounced the cult of Nar'Sie!" if(!silent_update) owner.visible_message("[owner] looks like [owner.p_they()] just reverted to their old faith!") ..() diff --git a/code/datums/status_effects/buffs.dm b/code/datums/status_effects/buffs.dm index 822eae989b6..ab3ad39dfa3 100644 --- a/code/datums/status_effects/buffs.dm +++ b/code/datums/status_effects/buffs.dm @@ -61,6 +61,7 @@ ..() /datum/status_effect/vanguard_shield/on_apply() + add_logs(owner, null, "gained Vanguard stun immunity") owner.add_stun_absorption("vanguard", 200, 1, "'s yellow aura momentarily intensifies!", "Your ward absorbs the stun!", " radiating with a soft yellow light!") owner.visible_message("[owner] begins to faintly glow!", "You will absorb all stuns for the next twenty seconds.") @@ -82,8 +83,10 @@ message_to_owner = "The weight of the Vanguard's protection crashes down upon you!" if(stuns_blocked >= 15) message_to_owner += "\nYou faint from the exertion!" - owner.Paralyse(stuns_blocked * 2) + stuns_blocked *= 2 + owner.Paralyse(stuns_blocked) owner.visible_message("[owner]'s glowing aura fades!", message_to_owner) + add_logs(owner, null, "lost Vanguard stun immunity[stuns_blocked ? "and been stunned for [stuns_blocked]":""]") @@ -99,6 +102,7 @@ alerttooltipstyle = "clockcult" /datum/status_effect/inathneqs_endowment/on_apply() + add_logs(owner, null, "gained Inath-neq's invulnerability") owner.visible_message("[owner] shines with azure light!", "You feel Inath-neq's power flow through you! You're invincible!") var/oldcolor = owner.color owner.color = "#1E8CE1" @@ -110,6 +114,7 @@ playsound(owner, 'sound/magic/Ethereal_Enter.ogg', 50, 1) /datum/status_effect/inathneqs_endowment/on_remove() + add_logs(owner, null, "lost Inath-neq's invulnerability") owner.visible_message("The light around [owner] flickers and dissipates!", "You feel Inath-neq's power fade from your body!") owner.status_flags &= ~GODMODE playsound(owner, 'sound/magic/Ethereal_Exit.ogg', 50, 1) diff --git a/code/game/gamemodes/clock_cult/clock_helpers/slab_abilities.dm b/code/game/gamemodes/clock_cult/clock_helpers/slab_abilities.dm index f370d576c88..dc415e2144f 100644 --- a/code/game/gamemodes/clock_cult/clock_helpers/slab_abilities.dm +++ b/code/game/gamemodes/clock_cult/clock_helpers/slab_abilities.dm @@ -283,7 +283,6 @@ break L.apply_status_effect(STATUS_EFFECT_VANGUARD) - add_logs(ranged_ability_user, L, "granted Vanguard") ranged_ability_user.apply_status_effect(STATUS_EFFECT_VANGUARD) clockwork_say(ranged_ability_user, text2ratvar("Shield us from darkness!"))