diff --git a/code/modules/cargo/order.dm b/code/modules/cargo/order.dm
index b78f218348..13e223bca3 100644
--- a/code/modules/cargo/order.dm
+++ b/code/modules/cargo/order.dm
@@ -66,12 +66,9 @@
P.info += "Item: [pack.name]
"
P.info += "Contents:
"
P.info += "
"
- for(var/atom/movable/AM in C.contents - P)
- if((P.errors & MANIFEST_ERROR_CONTENTS))
- if(prob(50))
- P.info += "- [AM.name]
"
- else
- continue
+ for(var/atom/movable/AM in C.contents - P - C.lockerelectronics)
+ if((P.errors & MANIFEST_ERROR_CONTENTS) && prob(50))
+ continue
P.info += "- [AM.name]
"
P.info += "
"
P.info += "Stamp below to confirm receipt of goods:
"