Skip to content

Commit

Permalink
Fixes this being wrong
Browse files Browse the repository at this point in the history
  • Loading branch information
PowerfulBacon committed Apr 11, 2024
1 parent 932cbbd commit b970c8d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions code/modules/uplink/uplink_devices.dm
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

var/uplink_flag = UPLINK_TRAITORS

/obj/item/uplink/Initialize(mapload, mob/owner, tc_amount = 20, rep_amount = TRAITOR_REPUTATION_START)
/obj/item/uplink/Initialize(mapload, mob/owner, tc_amount = 20, rep_amount = REPUTATION_TRAITOR_START)
. = ..()
AddComponent(/datum/component/uplink, owner?.mind, FALSE, TRUE, uplink_flag, tc_amount)

Expand Down Expand Up @@ -68,11 +68,11 @@
hidden_uplink.name = "dusty radio"

// Multitool uplink
/obj/item/multitool/uplink/Initialize(mapload, mob/owner, tc_amount = 20, rep_amount = TRAITOR_REPUTATION_START)
/obj/item/multitool/uplink/Initialize(mapload, mob/owner, tc_amount = 20, rep_amount = REPUTATION_TRAITOR_START)
. = ..()
AddComponent(/datum/component/uplink, owner?.mind, FALSE, TRUE, UPLINK_TRAITORS, tc_amount)

// Pen uplink
/obj/item/pen/uplink/Initialize(mapload, mob/owner, tc_amount = 20, rep_amount = TRAITOR_REPUTATION_START)
/obj/item/pen/uplink/Initialize(mapload, mob/owner, tc_amount = 20, rep_amount = REPUTATION_TRAITOR_START)
. = ..()
AddComponent(/datum/component/uplink, owner?.mind, TRUE, FALSE, UPLINK_TRAITORS, tc_amount)

0 comments on commit b970c8d

Please sign in to comment.