mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-08-25 21:19:00 +01:00
Bug fixes
- Fixes not being able to put multiple items into a processor. - Fixes monkey recycler design having the same ID as the smartfridge.
This commit is contained in:
@@ -137,10 +137,6 @@
|
||||
return 0
|
||||
|
||||
/obj/machinery/processor/attackby(var/obj/item/O as obj, var/mob/user as mob, params)
|
||||
if(!istype(O))
|
||||
return
|
||||
|
||||
var/obj/item/what = O
|
||||
|
||||
if(src.processing)
|
||||
user << "<span class='warning'>\the [src] is already processing something!</span>"
|
||||
@@ -157,10 +153,7 @@
|
||||
|
||||
default_deconstruction_crowbar(O)
|
||||
|
||||
if(src.contents.len > 0) //TODO: several items at once? several different items?
|
||||
user << "<span class='warning'>Something is already in the processing chamber.</span>"
|
||||
return 1
|
||||
|
||||
var/obj/item/what = O
|
||||
|
||||
if (istype(O, /obj/item/weapon/grab))
|
||||
var/obj/item/weapon/grab/G = O
|
||||
|
||||
@@ -265,7 +265,7 @@
|
||||
/datum/design/monkey_recycler
|
||||
name = "Machine Design (Monkey Recycler Board)"
|
||||
desc = "The circuit board for a monkey recycler."
|
||||
id = "smartfridge"
|
||||
id = "monkey_recycler"
|
||||
req_tech = list("programming" = 1)
|
||||
build_type = IMPRINTER
|
||||
materials = list("$glass" = 1000, "sacid" = 20)
|
||||
|
||||
Reference in New Issue
Block a user