Skip to content

Commit

Permalink
less stupid crap blocking movement
Browse files Browse the repository at this point in the history
  • Loading branch information
iloveloopers committed Jun 15, 2024
1 parent d9c2f8e commit 509d513
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 9 deletions.
8 changes: 0 additions & 8 deletions code/game/machinery/fuelcell_recycler.dm
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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()
Expand Down
2 changes: 1 addition & 1 deletion code/modules/mob/living/carbon/xenomorph/attack_alien.dm
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 509d513

Please sign in to comment.