From da2ee12552b607b838b797a3e372ea8b23e03553 Mon Sep 17 00:00:00 2001 From: Xhuis Date: Tue, 21 Apr 2015 18:13:58 -0400 Subject: [PATCH] Fixes revenants being affected by explosions --- code/modules/mob/living/simple_animal/revenant/revenant.dm | 3 +++ 1 file changed, 3 insertions(+) diff --git a/code/modules/mob/living/simple_animal/revenant/revenant.dm b/code/modules/mob/living/simple_animal/revenant/revenant.dm index 70b04705116..39585652c63 100644 --- a/code/modules/mob/living/simple_animal/revenant/revenant.dm +++ b/code/modules/mob/living/simple_animal/revenant/revenant.dm @@ -61,6 +61,9 @@ /mob/living/simple_animal/revenant/Process_Spacemove(var/movement_dir = 0) return 1 //Mainly to prevent the no-grav effect +/mob/living/simple_animal/revenant/ex_act(severity, target) + return 1 //Immune to the effects of explosions. + /mob/living/simple_animal/revenant/ClickOn(var/atom/A, var/params) //Copypaste from ghost code - revenants can't interact with the world directly. if(client.buildmode) build_click(src, client.buildmode, params, A)