From 80770657cb2ca2b6fbcb496aedff9c412defd1d7 Mon Sep 17 00:00:00 2001 From: Coldud Date: Wed, 31 Aug 2022 13:59:51 +1000 Subject: [PATCH] once again improves pda message immersion (#69534) About The Pull Request Reimplements #37735 (add 1% chance to have "Sent from my PDA" appended to a message) as it was lost during the transition to tablets. Why It's Good For The Game Feature parity with previous system. --- .../modular_computers/file_system/programs/ntmessenger.dm | 3 +++ 1 file changed, 3 insertions(+) diff --git a/code/modules/modular_computers/file_system/programs/ntmessenger.dm b/code/modules/modular_computers/file_system/programs/ntmessenger.dm index 89047ab22e0..18570c6a3ba 100644 --- a/code/modules/modular_computers/file_system/programs/ntmessenger.dm +++ b/code/modules/modular_computers/file_system/programs/ntmessenger.dm @@ -256,6 +256,9 @@ if (!string_targets.len) return FALSE + if (prob(1)) + message += " Sent from my PDA" + var/datum/signal/subspace/messaging/tablet_msg/signal = new(computer, list( "name" = fake_name || computer.saved_identification, "job" = fake_job || computer.saved_job,