From 27745d316e9cbe79a96b28201553c7b19b29add2 Mon Sep 17 00:00:00 2001 From: deathride58 Date: Fri, 2 Oct 2020 19:41:18 -0400 Subject: [PATCH] lmao so apparently that breaks byond's compiler --- code/__DEFINES/antagonists.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/__DEFINES/antagonists.dm b/code/__DEFINES/antagonists.dm index 0bb912ef04..1d47549685 100644 --- a/code/__DEFINES/antagonists.dm +++ b/code/__DEFINES/antagonists.dm @@ -66,7 +66,7 @@ //Lingblood stuff #define LINGBLOOD_DETECTION_THRESHOLD 1 #define LINGBLOOD_EXPLOSION_MULT 2 -#define LINGBLOOD_EXPLOSION_THRESHOLD (LINGBLOOD_DETECTION_THRESHOLD * LINGBLOOD_EXPLOSION_THRESHOLD) //Hey, important to note here: the explosion threshold is explicitly more than, rather than more than or equal to. This stops a single loud ability from triggering the explosion threshold. +#define LINGBLOOD_EXPLOSION_THRESHOLD (LINGBLOOD_DETECTION_THRESHOLD * LINGBLOOD_EXPLOSION_MULT) //Hey, important to note here: the explosion threshold is explicitly more than, rather than more than or equal to. This stops a single loud ability from triggering the explosion threshold. ///Heretics -- #define IS_HERETIC(mob) (mob.mind?.has_antag_datum(/datum/antagonist/heretic))