diff --git a/code/game/gamemodes/blob/theblob.dm b/code/game/gamemodes/blob/theblob.dm index 501e90f8fb..5fdec26563 100644 --- a/code/game/gamemodes/blob/theblob.dm +++ b/code/game/gamemodes/blob/theblob.dm @@ -19,6 +19,14 @@ var/atmosblock = 0 //if the blob blocks atmos and heat spread var/mob/camera/blob/overmind +/obj/structure/blob/attack_hand(mob/M) + . = ..() + M.changeNext_move(CLICK_CD_MELEE) + var/a = pick("gently stroke", "nuzzle", "affectionatly pet", "cuddle") + M.visible_message("[M] [a]s [src]!", "You [a] [src]!") + playsound(src, 'sound/effects/blobattack.ogg', 50, 1) //SQUISH SQUISH + + /obj/structure/blob/Initialize() var/area/Ablob = get_area(loc)