Skip to content
This repository was archived by the owner on May 22, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 6 additions & 11 deletions code/game/machinery/harvester.dm
Original file line number Diff line number Diff line change
Expand Up @@ -99,17 +99,7 @@
if(!LAZYLEN(operation_order)) //The list is empty, so we're done here
end_harvesting()
return
var/turf/target
for(var/adir in list(EAST,NORTH,SOUTH,WEST))
var/turf/T = get_step(src,adir)
if(!T)
continue
if(istype(T, /turf/closed))
continue
target = T
break
if(!target)
target = get_turf(src)
var/turf/target = get_turf(src)
for(var/obj/item/bodypart/BP in operation_order) //first we do non-essential limbs
BP.drop_limb()
C.emote("scream")
Expand Down Expand Up @@ -144,6 +134,11 @@
return
return FALSE

/obj/machinery/harvester/wrench_act(mob/living/user, obj/item/I)
. = ..()
if(default_change_direction_wrench(user, I))
return TRUE

/obj/machinery/harvester/crowbar_act(mob/living/user, obj/item/I)
if(default_pry_open(I))
return TRUE
Expand Down
Binary file modified icons/obj/machines/harvester.dmi
Binary file not shown.