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

Commit 7e1cea1

Browse files
committed
A start
1 parent 21f4046 commit 7e1cea1

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

tgui/packages/tgui/interfaces/PreferencesMenu/antagonists/antagonists/infiltrator.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ const Infiltrator: Antagonist = {
1919
`,
2020
INFILTRATOR_MECHANICAL_DESCRIPTION,
2121
],
22-
category: Category.Roundstart,
22+
category: Category.Midround,
2323
priority: -1,
2424
};
2525

yogstation/code/game/objects/items/implants/implant_infiltrator.dm

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
. = ..()
1010
ADD_TRAIT(src, TRAIT_EMPPROOF_SELF, "innate_empproof")
1111
ADD_TRAIT(src, TRAIT_EMPPROOF_CONTENTS, "innate_empproof")
12-
var/datum/component/uplink/uplink = AddComponent(/datum/component/uplink, _owner, TRUE, FALSE, null, 20)
12+
var/datum/component/uplink/uplink = AddComponent(/datum/component/uplink, _owner, TRUE, FALSE, null, 14)
1313
uplink.set_antagonist(ROLE_INFILTRATOR)
1414
alert_radio = new(src)
1515
alert_radio.make_syndie()
@@ -81,6 +81,7 @@
8181
else
8282
pinpointer.scan_target = targets[pinpointer_chosen]
8383
to_chat(imp_in, span_notice("Pinpointer target set to [pinpointer.scan_target]"))
84+
message_admins(pinpointer.scan_target)
8485
pinpointer.point_to_target()
8586
if ("Send Ship Away")
8687
alert_radio.talk_into(alert_radio, "The infiltration cruiser has been remotely sent to the base by [imp_in.real_name]")

yogstation/code/modules/events/infiltrators.dm

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
name = "Infiltrators"
33
typepath = /datum/round_event/ghost_role/infiltrators
44

5-
weight = 0
5+
weight = 5
66
max_occurrences = 1
7-
earliest_start = 30 MINUTES
7+
earliest_start = 50 MINUTES
88
track = EVENT_TRACK_MAJOR
99
tags = list(TAG_COMBAT, TAG_EXTERNAL)
1010
description = "Infiltrators will... infiltrate."

0 commit comments

Comments
 (0)