Skip to content

Commit

Permalink
followup
Browse files Browse the repository at this point in the history
  • Loading branch information
MosleyTheMalO committed Oct 24, 2024
1 parent 793a534 commit 9e83ae2
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
2 changes: 2 additions & 0 deletions modular_zzplurt/code/datums/outfit.dm
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@
if(user.ears_extra)
user.ears_extra.add_fingerprint(user, ignoregloves = TRUE)

/* Apparently was removed, keeping it just in case
/datum/outfit/copy_outfit_from_target(mob/living/carbon/human/H)
. = ..()
if(!.)
Expand All @@ -47,6 +48,7 @@
wrists = H.wrists.type
if(H.ears_extra)
ears_extra = H.ears_extra.type
*/

/datum/outfit/get_types_to_preload()
. = ..()
Expand Down
8 changes: 4 additions & 4 deletions modular_zzplurt/code/modules/mob/living/emote.dm
Original file line number Diff line number Diff line change
Expand Up @@ -670,8 +670,8 @@
emote_type = EMOTE_AUDIBLE

/datum/emote/living/snore/snore2/run_emote(mob/user, params)
var/datum/dna/D = user.has_dna()
var/say_mod = (D ? D.species.say_mod : "says")
var/obj/item/organ/internal/tongue/tongue = user.get_organ_slot(ORGAN_SLOT_TONGUE)
var/say_mod = (tongue ? tongue.say_mod : "says")
var/list/aaauughh = list(
"lets out an <b>earthshaking</b> snore.",
"lets out what sounds like a <b>painful</b> snore.",
Expand Down Expand Up @@ -790,8 +790,8 @@
sound = 'modular_zzplurt/sound/voice/barks/poyo.ogg'

/datum/emote/living/poyo/run_emote(mob/user, params, type_override, intentional)
var/datum/dna/D = user.has_dna()
var/say_mod = (D ? D.species.say_mod : "says")
var/obj/item/organ/internal/tongue/tongue = user.get_organ_slot(ORGAN_SLOT_TONGUE)
var/say_mod = (tongue ? tongue.say_mod : "says")
message = replacetextEx(message, "%SAYS", say_mod)
. = ..()

Expand Down
1 change: 0 additions & 1 deletion modular_zzplurt/code/modules/species/arachnid.dm
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@
mutanttongue = /obj/item/organ/internal/tongue/arachnid
changesource_flags = MIRROR_MAGIC | MIRROR_PRIDE | RACE_SWAP | WABBAJACK | MIRROR_BADMIN | SLIME_EXTRACT

say_mod = "chitters"
inherent_biotypes = MOB_ORGANIC|MOB_HUMANOID|MOB_BUG
external_organs = list(
/obj/item/organ/external/mandibles = "Plain",
Expand Down

0 comments on commit 9e83ae2

Please sign in to comment.