diff --git a/code/modules/mob/living/simple_animal/vore/bee.dm b/code/modules/mob/living/simple_animal/vore/bee.dm
index 79c15059e1..3d93b14471 100644
--- a/code/modules/mob/living/simple_animal/vore/bee.dm
+++ b/code/modules/mob/living/simple_animal/vore/bee.dm
@@ -42,4 +42,17 @@
// Activate Noms!
/mob/living/simple_animal/retaliate/bee
vore_active = 1
- vore_icons = SA_ICON_LIVING
\ No newline at end of file
+ vore_icons = SA_ICON_LIVING
+
+
+//CHOMPEDIT Hook in for loot drop code.
+/mob/living/simple_animal/retaliate/bee/death()
+ ..()
+ if(prob(50))
+ visible_message("\The [src] dropped some ore!")
+ var/location = get_turf(src)
+ new /obj/item/weapon/ore/iron(location)
+ if(prob(20))
+ visible_message("\The [src] dropped some ore!")
+ var/location = get_turf(src)
+ new /obj/item/weapon/ore/silver(location)