diff --git a/GainStation13/code/mobs/chocoslime.dm b/GainStation13/code/mobs/chocoslime.dm index 6663167b..8c83c1a8 100644 --- a/GainStation13/code/mobs/chocoslime.dm +++ b/GainStation13/code/mobs/chocoslime.dm @@ -43,7 +43,10 @@ blood_volume = 0 lighting_alpha = LIGHTING_PLANE_ALPHA_MOSTLY_VISIBLE initial_language_holder = /datum/language_holder/slime - + // You are not immune to vore. + devourable = 1 + digestable = 1 + feeding = 1 //Creambeast - basically a bit tougher mob that has feeding ranged attacks /mob/living/simple_animal/hostile/feed/chocolate_slime/creambeast diff --git a/code/modules/mob/living/simple_animal/slime/slime.dm b/code/modules/mob/living/simple_animal/slime/slime.dm index 23797cea..f7e5105a 100644 --- a/code/modules/mob/living/simple_animal/slime/slime.dm +++ b/code/modules/mob/living/simple_animal/slime/slime.dm @@ -35,6 +35,11 @@ verb_exclaim = "loudly blorbles" verb_yell = "loudly blorbles" + // GS13 modification to make the funy jelly edible + devourable = 1 + digestable = 1 + feeding = 1 + // canstun and canknockdown don't affect slimes because they ignore stun and knockdown variables // for the sake of cleanliness, though, here they are. status_flags = CANUNCONSCIOUS|CANPUSH