From de4fe78f13583189128e612558f541b57c84a081 Mon Sep 17 00:00:00 2001 From: FalseIncarnate Date: Fri, 27 Feb 2015 05:17:22 -0500 Subject: [PATCH] Removes HEADER option from Supply Ordering Consoles Removes the HEADER option, thus removing the supply point exploit tied to it. --- code/game/supplyshuttle.dm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/code/game/supplyshuttle.dm b/code/game/supplyshuttle.dm index 808d333a3a1..e8156995639 100644 --- a/code/game/supplyshuttle.dm +++ b/code/game/supplyshuttle.dm @@ -366,6 +366,7 @@ var/list/mechtoys = list( temp += "Request from: [get_supply_group_name(cat)]

" for(var/supply_type in supply_controller.supply_packs ) var/datum/supply_packs/N = supply_controller.supply_packs[supply_type] + if(N.name == "HEADER") continue //skip HEADER entry to disable exploiting it for supply points if(N.hidden || N.contraband || N.group != cat) continue //Have to send the type instead of a reference to temp += "[N.name] Cost: [N.cost]
" //the obj because it would get caught by the garbage @@ -562,6 +563,7 @@ var/list/mechtoys = list( temp += "Request from: [get_supply_group_name(cat)]

" for(var/supply_type in supply_controller.supply_packs ) var/datum/supply_packs/N = supply_controller.supply_packs[supply_type] + if(N.name == "HEADER") continue //skip HEADER entry to disable exploiting it for supply points if((N.hidden && !hacked) || (N.contraband && !can_order_contraband) || N.group != cat) continue //Have to send the type instead of a reference to temp += "[N.name] Cost: [N.cost]
" //the obj because it would get caught by the garbage