mirror of
https://github.com/fulpstation/fulpstation.git
synced 2025-12-10 10:01:40 +00:00
fixed pronouns
This commit is contained in:
@@ -28,8 +28,8 @@
|
|||||||
mood_change = 3
|
mood_change = 3
|
||||||
timeout = 3000
|
timeout = 3000
|
||||||
|
|
||||||
/datum/mood_event/pet_animal/add_effects(name)
|
/datum/mood_event/pet_animal/add_effects(mob/animal)
|
||||||
description = "<span class='nicegreen'>\The [name] is adorable! I can't stop petting \him!</span>\n"
|
description = "<span class='nicegreen'>\The [animal.name] is adorable! I can't stop petting [animal.p_them()]!</span>\n"
|
||||||
|
|
||||||
/datum/mood_event/honk
|
/datum/mood_event/honk
|
||||||
description = "<span class='nicegreen'>Maybe clowns aren't so bad after all. Honk!</span>\n"
|
description = "<span class='nicegreen'>Maybe clowns aren't so bad after all. Honk!</span>\n"
|
||||||
|
|||||||
@@ -238,7 +238,7 @@
|
|||||||
if(M && stat != DEAD)
|
if(M && stat != DEAD)
|
||||||
new /obj/effect/temp_visual/heart(loc)
|
new /obj/effect/temp_visual/heart(loc)
|
||||||
emote("me", 1, "purrs!")
|
emote("me", 1, "purrs!")
|
||||||
SEND_SIGNAL(M, COMSIG_ADD_MOOD_EVENT, src, /datum/mood_event/pet_animal, name)
|
SEND_SIGNAL(M, COMSIG_ADD_MOOD_EVENT, src, /datum/mood_event/pet_animal, src)
|
||||||
else
|
else
|
||||||
if(M && stat != DEAD)
|
if(M && stat != DEAD)
|
||||||
emote("me", 1, "hisses!")
|
emote("me", 1, "hisses!")
|
||||||
|
|||||||
@@ -267,7 +267,7 @@
|
|||||||
return
|
return
|
||||||
if(!item_to_add)
|
if(!item_to_add)
|
||||||
user.visible_message("[user] pets [src].","<span class='notice'>You rest your hand on [src]'s head for a moment.</span>")
|
user.visible_message("[user] pets [src].","<span class='notice'>You rest your hand on [src]'s head for a moment.</span>")
|
||||||
SEND_SIGNAL(user, COMSIG_ADD_MOOD_EVENT, src, /datum/mood_event/pet_animal, name)
|
SEND_SIGNAL(user, COMSIG_ADD_MOOD_EVENT, src, /datum/mood_event/pet_animal, src)
|
||||||
return
|
return
|
||||||
|
|
||||||
if(user && !user.temporarilyRemoveItemFromInventory(item_to_add))
|
if(user && !user.temporarilyRemoveItemFromInventory(item_to_add))
|
||||||
@@ -650,7 +650,7 @@
|
|||||||
if(M && stat != DEAD) // Added check to see if this mob (the dog) is dead to fix issue 2454
|
if(M && stat != DEAD) // Added check to see if this mob (the dog) is dead to fix issue 2454
|
||||||
new /obj/effect/temp_visual/heart(loc)
|
new /obj/effect/temp_visual/heart(loc)
|
||||||
emote("me", 1, "yaps happily!")
|
emote("me", 1, "yaps happily!")
|
||||||
SEND_SIGNAL(M, COMSIG_ADD_MOOD_EVENT, src, /datum/mood_event/pet_animal, name)
|
SEND_SIGNAL(M, COMSIG_ADD_MOOD_EVENT, src, /datum/mood_event/pet_animal, src)
|
||||||
else
|
else
|
||||||
if(M && stat != DEAD) // Same check here, even though emote checks it as well (poor form to check it only in the help case)
|
if(M && stat != DEAD) // Same check here, even though emote checks it as well (poor form to check it only in the help case)
|
||||||
emote("me", 1, "growls!")
|
emote("me", 1, "growls!")
|
||||||
|
|||||||
Reference in New Issue
Block a user