From 509d5135ee2fc31c0dd2536ff7ba14d0ebc177ab Mon Sep 17 00:00:00 2001 From: iloveloopers Date: Sat, 15 Jun 2024 01:11:31 -0400 Subject: [PATCH] less stupid crap blocking movement --- code/game/machinery/fuelcell_recycler.dm | 8 -------- code/modules/mob/living/carbon/xenomorph/attack_alien.dm | 2 +- 2 files changed, 1 insertion(+), 9 deletions(-) diff --git a/code/game/machinery/fuelcell_recycler.dm b/code/game/machinery/fuelcell_recycler.dm index 89024adb41fb..2a0c1da7222e 100644 --- a/code/game/machinery/fuelcell_recycler.dm +++ b/code/game/machinery/fuelcell_recycler.dm @@ -5,9 +5,6 @@ icon_state = "recycler" density = TRUE active_power_usage = 15000 - unslashable = TRUE - unacidable = TRUE - indestructible = TRUE ///How much to recharge the cells per process var/recharge_amount = 5 @@ -151,11 +148,6 @@ return icon_state = "recycler_on" -/obj/structure/machinery/fuelcell_recycler/ex_act(severity) - if(indestructible) - return - . = ..() - /obj/structure/machinery/fuelcell_recycler/proc/turn_off() visible_message(SPAN_NOTICE("[src] stops whirring as it turns off.")) stop_processing() diff --git a/code/modules/mob/living/carbon/xenomorph/attack_alien.dm b/code/modules/mob/living/carbon/xenomorph/attack_alien.dm index 2576d0bc599b..de0cefeea76d 100644 --- a/code/modules/mob/living/carbon/xenomorph/attack_alien.dm +++ b/code/modules/mob/living/carbon/xenomorph/attack_alien.dm @@ -504,7 +504,7 @@ //Slashing fences /obj/structure/fence/attack_alien(mob/living/carbon/xenomorph/M) M.animation_attack_on(src) - var/damage_dealt = 5 + var/damage_dealt = 25 M.visible_message(SPAN_DANGER("[M] mangles [src]!"), \ SPAN_DANGER("We mangle [src]!"), \ SPAN_DANGER("We hear twisting metal!"), 5, CHAT_TYPE_XENO_COMBAT)