Skip to content
This repository was archived by the owner on May 22, 2025. It is now read-only.

Commit b38711b

Browse files
committed
Fixes PDAs and gives them the rest of the chameleon kit
1 parent b597cb9 commit b38711b

File tree

5 files changed

+12
-58
lines changed

5 files changed

+12
-58
lines changed

code/modules/modular_computers/computers/item/pda/pda_presets.dm

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -233,11 +233,17 @@
233233
)
234234
return ..()
235235

236-
//for inside one of the nukie lockers
236+
//for inside one of the nukie lockers and the ones infiltrators spawn with
237237
/obj/item/modular_computer/tablet/pda/preset/syndicate
238238
desc = "Based off Nanotrasen's PDAs, this one has been reverse-engineered and loaded with illegal software provided by the Syndicate."
239239
greyscale_config = /datum/greyscale_config/tablet/stripe_thick
240240
greyscale_colors = "#A80001#5C070F#000000"
241+
starting_components = list( /obj/item/computer_hardware/processor_unit/small,
242+
/obj/item/stock_parts/cell/computer,
243+
/obj/item/computer_hardware/hard_drive/small/syndicate,
244+
/obj/item/computer_hardware/network_card/advanced,
245+
/obj/item/computer_hardware/card_slot,
246+
/obj/item/computer_hardware/printer/mini)
241247

242248
/obj/item/modular_computer/tablet/pda/preset/syndicate/Initialize(mapload)
243249
obj_flags |= EMAGGED //starts emagged

code/modules/modular_computers/computers/item/tablet/tablet_presets.dm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@
6969
starting_components = list( /obj/item/computer_hardware/processor_unit/small,
7070
/obj/item/stock_parts/cell/computer,
7171
/obj/item/computer_hardware/hard_drive/small/nukeops,
72-
/obj/item/computer_hardware/network_card)
72+
/obj/item/computer_hardware/network_card/advanced)
7373

7474
starting_files = list(new /datum/computer_file/program/radar/fission360)
7575
initial_program = /datum/computer_file/program/radar/fission360

yogstation.dme

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4086,7 +4086,6 @@
40864086
#include "yogstation\code\game\gamemodes\clean_this_shit_up\blood_cult.dm"
40874087
#include "yogstation\code\game\gamemodes\clean_this_shit_up\clock_cult.dm"
40884088
#include "yogstation\code\game\gamemodes\clean_this_shit_up\other.dm"
4089-
#include "yogstation\code\game\gamemodes\infiltration\infiltration.dm"
40904089
#include "yogstation\code\game\machinery\suit_storage_unit.dm"
40914090
#include "yogstation\code\game\machinery\computer\arcade.dm"
40924091
#include "yogstation\code\game\machinery\computer\atmos_sim.dm"

yogstation/code/game/gamemodes/infiltration/infiltration.dm

Lines changed: 0 additions & 54 deletions
This file was deleted.

yogstation/code/modules/antagonists/infiltrator/outfit.dm

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,16 @@
1-
/datum/outfit/infiltrator // RIP
1+
/datum/outfit/infiltrator // We're so back
22
name = "Syndicate Infiltrator"
33

44
uniform = /obj/item/clothing/under/chameleon/syndicate
5+
suit = /obj/item/clothing/suit/chameleon/syndicate
6+
glasses = /obj/item/clothing/glasses/chameleon/syndicate
57
shoes = /obj/item/clothing/shoes/chameleon/noslip/syndicate
68
gloves = /obj/item/clothing/gloves/chameleon/syndicate
79
back = /obj/item/storage/backpack/chameleon/syndicate
810
ears = /obj/item/radio/headset/chameleon/syndicate
911
id = /obj/item/card/id/syndicate
1012
mask = /obj/item/clothing/mask/chameleon/syndicate
13+
head = /obj/item/clothing/head/chameleon/syndicate
1114
belt = /obj/item/modular_computer/tablet/pda/preset/syndicate
1215
box = /obj/item/storage/box/survival/engineer
1316
backpack_contents = list(/obj/item/kitchen/knife/combat/survival=1,\

0 commit comments

Comments
 (0)