diff --git a/code/datums/elements/wuv.dm b/code/datums/elements/wuv.dm index d2b1f7aa6d..a8d488268a 100644 --- a/code/datums/elements/wuv.dm +++ b/code/datums/elements/wuv.dm @@ -49,7 +49,7 @@ if(pet_emote) target.emote("me", pet_type, pet_emote) if(pet_moodlet && !CHECK_BITFIELD(target.flags_1, HOLOGRAM_1)) //prevents unlimited happiness petting park exploit. - SEND_SIGNAL(user, COMSIG_ADD_MOOD_EVENT, target, pet_moodlet) + SEND_SIGNAL(user, COMSIG_ADD_MOOD_EVENT, target, pet_moodlet, target) /datum/element/wuv/proc/kick_the_dog(mob/target, mob/user) if(!QDELETED(target) || !QDELETED(user) || target.stat == DEAD) @@ -57,4 +57,4 @@ if(punt_emote) target.emote("me", punt_type, punt_emote) if(punt_moodlet && !CHECK_BITFIELD(target.flags_1, HOLOGRAM_1)) - SEND_SIGNAL(user, COMSIG_ADD_MOOD_EVENT, target, punt_moodlet) + SEND_SIGNAL(user, COMSIG_ADD_MOOD_EVENT, target, punt_moodlet, target)