From ca8a8c031fb6d9771ce1dbc524f5725ac052cfa1 Mon Sep 17 00:00:00 2001 From: Tastyfish Date: Fri, 26 Feb 2016 17:42:23 -0500 Subject: [PATCH] Fixes some of the pda's not initializing, oops --- code/modules/pda/pdas.dm | 3 +++ 1 file changed, 3 insertions(+) diff --git a/code/modules/pda/pdas.dm b/code/modules/pda/pdas.dm index 71e831e206d..1e15144c5fd 100644 --- a/code/modules/pda/pdas.dm +++ b/code/modules/pda/pdas.dm @@ -49,6 +49,7 @@ ttone = "silence" /obj/item/device/pda/mime/New() + ..() var/datum/data/pda/app/messenger/M = find_program(/datum/data/pda/app/messenger) if(M) M.silent = 1 @@ -113,6 +114,7 @@ owner = "John Doe" /obj/item/device/pda/syndicate/New() + ..() var/datum/data/pda/app/messenger/M = find_program(/datum/data/pda/app/messenger) if(M) M.m_hidden = 1 @@ -139,6 +141,7 @@ model_name = "Thinktronic 5290 WGW-11 Series E-reader and Personal Data Assistant" /obj/item/device/pda/librarian/New() + ..() var/datum/data/pda/app/messenger/M = find_program(/datum/data/pda/app/messenger) if(M) M.silent = 1 //Quiet in the library!