From 6daf7b85153bffe017b901463734917224df0dec Mon Sep 17 00:00:00 2001 From: 13spacemen <46101244+13spacemen@users.noreply.github.com> Date: Tue, 14 Jun 2022 17:35:30 +0500 Subject: [PATCH] Vamps With 0 Blood Sucked Don't React To Holy Water (#17959) * vampires with 0 total blood sucked no longer react to holy water by bursting into flames etc. * minor adjustment --- code/modules/reagents/chemistry/reagents/water.dm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/code/modules/reagents/chemistry/reagents/water.dm b/code/modules/reagents/chemistry/reagents/water.dm index 0cb3356b362..e70fa2252ad 100644 --- a/code/modules/reagents/chemistry/reagents/water.dm +++ b/code/modules/reagents/chemistry/reagents/water.dm @@ -278,6 +278,8 @@ V.vomit(0, FALSE, FALSE) return else + if(!vamp.bloodtotal) + return ..() | update_flags switch(current_cycle) if(1 to 4) to_chat(M, "Something sizzles in your veins!")