diff --git a/code/modules/mining/satchel_ore_boxdm.dm b/code/modules/mining/satchel_ore_boxdm.dm
index 99ad0568a8..e7a248ecf9 100644
--- a/code/modules/mining/satchel_ore_boxdm.dm
+++ b/code/modules/mining/satchel_ore_boxdm.dm
@@ -24,7 +24,10 @@
return
S.hide_from(usr)
for(var/obj/item/weapon/ore/O in S.contents)
- S.remove_from_storage(O, src) //This will move the item to this item's contents
+ if (O.name != "strange rock")
+ S.remove_from_storage(O, src) //This will move the item to this item's contents
+ else
+ to_chat(user,"The [O] bounces out of the [src]!")
to_chat(user,"You empty the satchel into the [src].")
update_ore_count()