Hmm yes, thank you for not sending the new file, TortoiseGit.

This commit is contained in:
Zattarra
2023-06-11 22:06:40 +09:00
parent ed1e1bc6eb
commit 2ecd0a825c
@@ -0,0 +1,16 @@
// Add incompatible quirks.
// Inspired from LeDrascol's code. Thank you.
/datum/controller/subsystem/processing/quirks/Initialize(timeofday)
. = ..()
// Prevent incompatible quirks.
LAZYADD(quirk_blacklist, list(
// BLOCKED: Thematic, mechanic.
// Hallowed is a direct foil to Cursed Blood.
// Causes a conflict with Holy Water effects.
list("Hallowed","Cursed Blood"),
// BLOCKED: Thematic, mechanic, game lore.
// Bloodsuckers cannot interact with Hallowed users.
list("Hallowed","Bloodsucker Fledgling"),
))