mirror of
https://github.com/vgstation-coders/vgstation13.git
synced 2025-12-10 10:21:11 +00:00
core gens start locked, added placeholder core monitor file
Signed-off-by: Cael_Aislinn <cael_aislinn@yahoo.com.au>
This commit is contained in:
@@ -1213,6 +1213,7 @@
|
|||||||
#include "code\WorkInProgress\Cael_Aislinn\Rust\core_control.dm"
|
#include "code\WorkInProgress\Cael_Aislinn\Rust\core_control.dm"
|
||||||
#include "code\WorkInProgress\Cael_Aislinn\Rust\core_field.dm"
|
#include "code\WorkInProgress\Cael_Aislinn\Rust\core_field.dm"
|
||||||
#include "code\WorkInProgress\Cael_Aislinn\Rust\core_gen.dm"
|
#include "code\WorkInProgress\Cael_Aislinn\Rust\core_gen.dm"
|
||||||
|
#include "code\WorkInProgress\Cael_Aislinn\Rust\core_monitor.dm"
|
||||||
#include "code\WorkInProgress\Cael_Aislinn\Rust\fuel_assembly.dm"
|
#include "code\WorkInProgress\Cael_Aislinn\Rust\fuel_assembly.dm"
|
||||||
#include "code\WorkInProgress\Cael_Aislinn\Rust\fuel_assembly_port.dm"
|
#include "code\WorkInProgress\Cael_Aislinn\Rust\fuel_assembly_port.dm"
|
||||||
#include "code\WorkInProgress\Cael_Aislinn\Rust\fuel_assembly_port_construction.dm"
|
#include "code\WorkInProgress\Cael_Aislinn\Rust\fuel_assembly_port_construction.dm"
|
||||||
|
|||||||
@@ -64,7 +64,7 @@ max volume of plasma storeable by the field = the total volume of a number of ti
|
|||||||
directwired = 1
|
directwired = 1
|
||||||
|
|
||||||
var/state = 0
|
var/state = 0
|
||||||
var/locked = 0
|
var/locked = 1
|
||||||
var/remote_access_enabled = 1
|
var/remote_access_enabled = 1
|
||||||
|
|
||||||
/obj/machinery/power/rust_core/process()
|
/obj/machinery/power/rust_core/process()
|
||||||
@@ -180,7 +180,7 @@ max volume of plasma storeable by the field = the total volume of a number of ti
|
|||||||
return
|
return
|
||||||
|
|
||||||
var/dat = ""
|
var/dat = ""
|
||||||
if(stat & NOPOWER || locked)
|
if(stat & NOPOWER || locked || state != 2)
|
||||||
dat += "<i>The console is dark and nonresponsive.</i>"
|
dat += "<i>The console is dark and nonresponsive.</i>"
|
||||||
else
|
else
|
||||||
dat += "<b>RUST Tokamak pattern Electromagnetic Field Generator</b><br>"
|
dat += "<b>RUST Tokamak pattern Electromagnetic Field Generator</b><br>"
|
||||||
|
|||||||
Reference in New Issue
Block a user