diff --git a/code/modules/mob/living/simple_animal/vore/jelly.dm b/code/modules/mob/living/simple_animal/vore/jelly.dm
index 9d12c207cf..73d4f362bf 100644
--- a/code/modules/mob/living/simple_animal/vore/jelly.dm
+++ b/code/modules/mob/living/simple_animal/vore/jelly.dm
@@ -30,6 +30,20 @@
emote_hear = list("squishes","spluts","splorts","sqrshes","makes slime noises")
emote_see = list("undulates quietly")
+//CHOMPEDIT ACTIVATING LOOT DROPS FOR JELLO NERDS
+/mob/living/simple_animal/hostile/scarybat/death()
+ ..()
+ var/location = get_turf(src) //lets just define this here once instead of ewverytime an if is true, less work.
+ if(prob(99))
+ visible_message("\The [src] dropped some gel!")
+ new /obj/item/weapon/reagent_containers/food/snacks/gelbowl(location) //gelatinous blobs, hoe bland.
+ if(prob(80))
+ visible_message("\The [src] dropped some can!")
+ new /obj/item/weapon/reagent_containers/food/drinks/cans/lemon_lime(location) //blobs have bad taste
+ if(prob(20))
+ visible_message("\The [src] dropped some ore!")
+ new /obj/item/weapon/ore/uranium(location)
+
// Activate Noms!
/mob/living/simple_animal/hostile/jelly
vore_active = 1