diff --git a/code/modules/cargo/packs/engine.dm b/code/modules/cargo/packs/engine.dm index af9669de..7a3e53dd 100644 --- a/code/modules/cargo/packs/engine.dm +++ b/code/modules/cargo/packs/engine.dm @@ -225,7 +225,8 @@ contains = list(/obj/item/survivalcapsule/reactor, /obj/machinery/computer/reactor/control_rods/cargo, /obj/machinery/computer/reactor/stats/cargo, - /obj/machinery/computer/reactor/fuel_rods/cargo) + /obj/machinery/computer/reactor/fuel_rods/cargo, + /obj/item/paper/fluff/rbmkcargo) crate_name = "Build Your Own Reactor Kit" crate_type = /obj/structure/closet/crate/secure/engineering dangerous = TRUE diff --git a/hyperstation/code/modules/power/reactor/reactor_cargo.dm b/hyperstation/code/modules/power/reactor/reactor_cargo.dm index 20a770d2..6abaa01a 100644 --- a/hyperstation/code/modules/power/reactor/reactor_cargo.dm +++ b/hyperstation/code/modules/power/reactor/reactor_cargo.dm @@ -9,12 +9,13 @@ if(istype(I)) to_chat(user, "You add the reactor's ID to \the [src]>") src.id = I.buffer + link_to_reactor() return TRUE /obj/machinery/atmospherics/components/trinary/nuclear_reactor/cargo // easier on the brain /obj/machinery/atmospherics/components/trinary/nuclear_reactor/cargo/New() - id = rand(1, 1000000) // cmon, what are the chances? + id = rand(1, 9999999) // cmon, what are the chances? // Cargo varients can be wrenched down and don't start linked to the default RMBK reactor @@ -29,3 +30,7 @@ /obj/machinery/computer/reactor/fuel_rods/cargo anchored = FALSE id = null + +/obj/item/paper/fluff/rbmkcargo + name = "Nuclear Reactor Instructions" + info = "Make sure a 5x5 area is completely clear of pipes, cables and machinery when using the beacon. Those will be provided automatically with the beacon's bluespace decompression. Use a multitool on the reactor then on the computers provided to link them together. Good luck!"