Couple more recycling tweaks

Added a button for garbage grinder that can be pressed without needing to open the windoor.
Fixed AI/borg interaction with the grinder.
Added a var to toggle the recycling crusher's manual feeding, which the grinder will toggle off for it. (borg modules will no longer be eaten out of their slots)
Made the crusher start upgraded to full efficiency.
Also fixed the funned up poster near the entrance.
This commit is contained in:
Verkister
2023-04-10 12:26:30 +03:00
parent 7c3d3a6772
commit 5024b2977c
3 changed files with 32 additions and 8 deletions

View File

@@ -6,6 +6,7 @@
var/working = FALSE
var/negative_dir = null //VOREStation Addition
var/hand_fed = TRUE //CHOMPAdd
/obj/machinery/recycling/process()
return PROCESS_KILL // these are all stateful
@@ -33,7 +34,8 @@
return
if(default_part_replacement(user, O))
return
if(!hand_fed) //CHOMPAdd
return
var/mob/living/M = user
if(can_accept_item(O))
M.drop_from_inventory(O)