From cd0af8e8621176a45ae591e334037facff2c3b86 Mon Sep 17 00:00:00 2001 From: BurgerLUA <8602857+BurgerLUA@users.noreply.github.com> Date: Sun, 3 Mar 2024 08:38:13 -0800 Subject: [PATCH] Limits Powersinks + Crab-17 purchases to once each per traitor per round. (#1219) ## About The Pull Request Limits Powersinks and Crab-17 purchases to once each per traitor per round. ## Why It's Good For The Game Powersink and Crab spam is pretty awful. A lot of people recently have been spamming these two objectives and then doing nothing of substance with them. Traitors should be using their TC to further the round and create meaningful conflict instead of what can basically be described as being in a constant state of soft grief. ## Proof Of Testing If it compiles, it werks. ## Changelog :cl: BurgerBB del: Limits Powersinks + Crab-17 purchases to once each per traitor per round. /:cl: Co-authored-by: Waterpig <49160555+Majkl-J@users.noreply.github.com> --- .../code/modules/uplink/uplink_items/device_tools.dm | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/modular_zubbers/code/modules/uplink/uplink_items/device_tools.dm b/modular_zubbers/code/modules/uplink/uplink_items/device_tools.dm index 79a5899aa8d..0b19b7449d9 100644 --- a/modular_zubbers/code/modules/uplink/uplink_items/device_tools.dm +++ b/modular_zubbers/code/modules/uplink/uplink_items/device_tools.dm @@ -1,3 +1,7 @@ /datum/uplink_item/device_tools/suspiciousphone surplus = 0 cant_discount = TRUE + limited_stock = 1 + +/datum/uplink_item/device_tools/powersink + limited_stock = 1 \ No newline at end of file