mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-30 00:29:02 +01:00
* Update orderconsole.dm * Update orderconsole.dm * Update budgetordering.dm
This commit is contained in:
@@ -207,7 +207,7 @@
|
||||
var/datum/supply_pack/pack = SSshuttle.supply_packs[id]
|
||||
if(!istype(pack))
|
||||
CRASH("Unknown supply pack id given by order console ui. ID: [params["id"]]")
|
||||
if((pack.hidden && !(obj_flags & EMAGGED)) || (pack.contraband && !contraband) || pack.DropPodOnly)
|
||||
if((pack.hidden && !(obj_flags & EMAGGED)) || (pack.contraband && !contraband) || pack.DropPodOnly || (pack.special && !pack.special_enabled))
|
||||
return
|
||||
|
||||
var/name = "*None Provided*"
|
||||
|
||||
@@ -190,7 +190,7 @@
|
||||
var/datum/supply_pack/pack = SSshuttle.supply_packs[id]
|
||||
if(!istype(pack))
|
||||
return
|
||||
if((pack.hidden && (pack.contraband && !contraband) || pack.DropPodOnly))
|
||||
if(pack.hidden || pack.contraband || pack.DropPodOnly || (pack.special && !pack.special_enabled))
|
||||
return
|
||||
|
||||
var/name = "*None Provided*"
|
||||
|
||||
Reference in New Issue
Block a user