From 27f4edf7335e9ed0af21f15f1838ea37c156596d Mon Sep 17 00:00:00 2001 From: LordVoidron <161195966+LordVoidron@users.noreply.github.com> Date: Mon, 26 Feb 2024 08:50:24 -0600 Subject: [PATCH] Adds PDA Maints themes shift start (#1122) * Adds PDA Maints themes shift start Adds the themes "Cat, Lightmode, and Spooky" to shift start PDA themes. Something so small as a cosmetic PDA theme should be usable by the average person. * Update code/__DEFINES/modular_computer.dm Co-authored-by: SomeRandomOwl <2568378+SomeRandomOwl@users.noreply.github.com> --------- Co-authored-by: SomeRandomOwl <2568378+SomeRandomOwl@users.noreply.github.com> --- code/__DEFINES/modular_computer.dm | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/code/__DEFINES/modular_computer.dm b/code/__DEFINES/modular_computer.dm index a8e5c38ffc6..b52e71ae396 100644 --- a/code/__DEFINES/modular_computer.dm +++ b/code/__DEFINES/modular_computer.dm @@ -121,6 +121,11 @@ GLOBAL_LIST_INIT(default_pda_themes, list( PDA_THEME_RETRO_NAME = PDA_THEME_RETRO, PDA_THEME_SYNTH_NAME = PDA_THEME_SYNTH, PDA_THEME_TERMINAL_NAME = PDA_THEME_TERMINAL, + // NOVA EDIT ADDITION - START + CAT_THEME_NAME = PDA_THEME_CAT, + LIGHT_THEME_NAME = PDA_THEME_LIGHT_MODE, + ELDRITCH_THEME_NAME = PDA_THEME_SPOOKY, + // NOVA EDIT ADDITION - END )) ///List of PDA themes that are accessible to everyone by default.