diff --git a/code/game/machinery/machine_frame.dm b/code/game/machinery/machine_frame.dm index 1b4aa597f30..9aa52d3243b 100644 --- a/code/game/machinery/machine_frame.dm +++ b/code/game/machinery/machine_frame.dm @@ -1035,7 +1035,7 @@ to destroy them and players will be able to make replacements. /obj/item/circuitboard/salvage_redemption board_name = "Salvage Redemption" icon_state = "supply" - build_path = /obj/item/circuitboard/salvage_redemption + build_path = /obj/machinery/salvage_redemption board_type = "machine" origin_tech = "programming=1;engineering=2" req_components = list( diff --git a/code/modules/mining/salvage_redemption.dm b/code/modules/mining/salvage_redemption.dm index 8d967d3f99f..24b9b66a9d8 100644 --- a/code/modules/mining/salvage_redemption.dm +++ b/code/modules/mining/salvage_redemption.dm @@ -86,7 +86,7 @@ if(istype(used, /obj/item/storage/bag/expedition)) var/obj/item/storage/bag/expedition/bag = used - if(!bag.contents) + if(!length(bag.contents)) to_chat(user, "You have no salvage to redeem."); return ITEM_INTERACT_COMPLETE for(var/obj/item/salvage/loot in bag.contents)