diff --git a/code/game/machinery/constructable_frame.dm b/code/game/machinery/constructable_frame.dm index 406d32a52b3..1bf8dd95400 100644 --- a/code/game/machinery/constructable_frame.dm +++ b/code/game/machinery/constructable_frame.dm @@ -1000,7 +1000,7 @@ to destroy them and players will be able to make replacements. board_type = "machine" origin_tech = "programming=3;engineering=3;plasmatech=3;bluespace=5" req_components = list( - /obj/item/stack/telecrystal = 5, + /obj/item/stack/ore/bluespace_crystal = 5, /obj/item/stack/cable_coil = 15) /obj/item/circuitboard/sleeper diff --git a/code/modules/economy/robotic_quests/robo_quest_console.dm b/code/modules/economy/robotic_quests/robo_quest_console.dm index a8ca474164d..d42e7761d94 100644 --- a/code/modules/economy/robotic_quests/robo_quest_console.dm +++ b/code/modules/economy/robotic_quests/robo_quest_console.dm @@ -190,6 +190,9 @@ ) /obj/machinery/computer/roboquest/ui_act(action, list/params, datum/tgui/ui) + if(..()) + return + switch(action) if("RemoveID") currentID.forceMove(get_turf(src))