Protolathe now ejects plasteel properly; fix for #14299 (#14442)

This commit is contained in:
DreamySkrell
2022-07-15 00:57:53 +02:00
committed by GitHub
parent 6eaa8267dc
commit 53e53c2f6a
3 changed files with 10 additions and 0 deletions

View File

@@ -73,6 +73,8 @@ won't update every console in existence) but it's more of a hassle to do. Also,
return_name = "Uranium"
if("diamond")
return_name = "Diamond"
if("plasteel")
return_name = "Plasteel"
return return_name
/obj/machinery/computer/rdconsole/proc/CallReagentName(ID)

View File

@@ -29,4 +29,6 @@
return /obj/item/stack/material/uranium
if("diamond")
return /obj/item/stack/material/diamond
if("plasteel")
return /obj/item/stack/material/plasteel
return null