Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions code/game/objects/items/devices/radio/radio.dm
Original file line number Diff line number Diff line change
Expand Up @@ -288,10 +288,10 @@
if(SEND_SIGNAL(src, COMSIG_RADIO_NEW_MESSAGE, talking_movable, message, channel) & COMPONENT_CANNOT_USE_RADIO)
return NONE

// DARKPACK EDIT ADD START
// DARKPACK EDIT ADD START
if(talking_movable && HAS_TRAIT(talking_movable, TRAIT_REJECTED_BY_TECHNOLOGY))
message = scramble_lasombra_message(message, talking_movable)
// DARKPACK EDIT ADD END
// // DARKPACK EDIT ADD END

if(!spans)
spans = list(talking_movable.speech_span)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,9 @@
/datum/discipline/obtenebration
)
clan_traits = list(
TRAIT_REJECTED_BY_TECHNOLOGY,
TRAIT_NO_MIRROR_REFLECTION,
TRAIT_INVISIBLE_TO_CAMERA
)
) // CRIMSON EDIT CHANGE — Original: +TRAIT_REJECTED_BY_TECHNOLOGY
male_clothes = /obj/item/clothing/under/vampire/emo
female_clothes = /obj/item/clothing/under/vampire/business
enlightenment = TRUE
Expand All @@ -26,7 +25,7 @@
target.playsound_local(target, "modular_darkpack/modules/powers/sounds/daimonion_laughs/eldritchlaugh.ogg", 50, FALSE)
target.Paralyze(6 SECONDS)

// Not TTRPG accurate and is pending a rework to use real rolls after #633
// Not TTRPG accurate and is pending a rework to use real rolls after #633
/proc/scramble_lasombra_message(message, mob/living/lasombra)
var/static/list/zalgo_letters = list(
"̨a", "̡b", "̢c", "̷d", "̶e", "̸f", "̹g", "̺h", "̻i",
Expand Down
Loading