From 5347af6dfde4e432e6af3e3ebabd61727ad1616d Mon Sep 17 00:00:00 2001 From: KIBORG04 Date: Sun, 4 Jul 2021 13:21:16 +0300 Subject: [PATCH] Fix reveal role from a mafia psychologist (#59968) --- code/modules/mafia/roles.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/mafia/roles.dm b/code/modules/mafia/roles.dm index 8ae174d54df..a48f890d108 100644 --- a/code/modules/mafia/roles.dm +++ b/code/modules/mafia/roles.dm @@ -240,8 +240,8 @@ current_target = null if(!target.can_action(game, src, "role reveal")) return - add_note("N[game.turn] - [current_target.body.real_name] - Revealed true identity") - to_chat(body,span_warning("You have revealed the true nature of the [current_target]!")) + add_note("N[game.turn] - [target.body.real_name] - Revealed true identity") + to_chat(body,span_warning("You have revealed the true nature of the [target]!")) target.reveal_role(game, verbose = TRUE) can_use = FALSE