diff --git a/code/game/machinery/newscaster.dm b/code/game/machinery/newscaster.dm
index 01da4cbb..e54539b4 100644
--- a/code/game/machinery/newscaster.dm
+++ b/code/game/machinery/newscaster.dm
@@ -457,10 +457,10 @@ var/list/obj/machinery/newscaster/allCasters = list() //Global list that will co
dat += "
"
if(24)
dat += "Regarding Station Directives
"
- dat += "The Station Directives are a set of specific orders and directives issued and enforced aboard a specific NanoTrasen Corporation installation. This terminal provides access to orders and directives enforced aboard the
NSS Aurora. Note that these are only enforced upon NanoTrasen Employees, and not civilian orotherwise visitors, unless ruled otherwise by sector specific Central Command.
"
+ dat += "
The Station Directives are a set of specific orders and directives issued and enforced aboard a specific NanoTrasen Corporation installation. This terminal provides access to orders and directives enforced aboard the
NSS Aurora. Note that these are only enforced upon NanoTrasen Employees, and not civilians or visitors, unless ruled otherwise by sector specific Central Command.
"
dat += "Overwriting power of general NanoTrasen Corporate Regulation is given to the Station Directives. Should a conflict emerge, the Station Directives active aboard the specific installation are to be adhered to, over Corporate Regulation.
"
dat += "Punishment for a violation of Station Directives should be escalated in the following fashion:
- Verbal warning, and citation. Ensure that the Employee is familiar with the Station Directives.
- Charge of violating article i111 - Failure to Execute an Order - of NanoTrasen Corporate Regulation
- Subsequent charge of violating article i206 - Neglect of Duty - of NanoTrasen Corporate Regulation, and review of Employee by the Employee's Head of Staff.
- Subsequent failure to follow Station Directives should result in suspension of contract, if not imprisonment until transfer to Central Command station.
"
- dat += "Obviously, dependant on the violation and actual crimes concerned, punishment may be escalated faster, with intent to ensure in the safety of station, equipment and crew.
"
+ dat += "Dependant on the violation and actual crimes concerned, punishment may be escalated faster, with intent to ensure in the safety of station, equipment and crew.
"
dat += "
"
dat += ""
else
diff --git a/code/game/machinery/requests_console.dm b/code/game/machinery/requests_console.dm
index 2e7f6b08..8969d384 100644
--- a/code/game/machinery/requests_console.dm
+++ b/code/game/machinery/requests_console.dm
@@ -242,7 +242,7 @@ var/list/obj/machinery/requests_console/allConsoles = list()
dat += "Regarding Station Directives
|
"
while(query.NextRow())
- var/id = query.item[1]
+ var/id = text2num(query.item[1])
var/name = query.item[2]
var/bgcolor = "#e3e3e3"
@@ -272,10 +272,10 @@ var/list/obj/machinery/requests_console/allConsoles = list()
if(14) //directive description
dat += "Regarding Station Directives
"
- dat += "The Station Directives are a set of specific orders and directives issued and enforced aboard a specific NanoTrasen Corporation installation. This terminal provides access to orders and directives enforced aboard the
NSS Aurora. Note that these are only enforced upon NanoTrasen Employees, and not civilian orotherwise visitors, unless ruled otherwise by sector specific Central Command.
"
+ dat += "
The Station Directives are a set of specific orders and directives issued and enforced aboard a specific NanoTrasen Corporation installation. This terminal provides access to orders and directives enforced aboard the
NSS Aurora. Note that these are only enforced upon NanoTrasen Employees, and not civilians or visitors, unless ruled otherwise by sector specific Central Command.
"
dat += "Overwriting power of general NanoTrasen Corporate Regulation is given to the Station Directives. Should a conflict emerge, the Station Directives active aboard the specific installation are to be adhered to, over Corporate Regulation.
"
dat += "Punishment for a violation of Station Directives should be escalated in the following fashion:
- Verbal warning, and citation. Ensure that the Employee is familiar with the Station Directives.
- Charge of violating article i111 - Failure to Execute an Order - of NanoTrasen Corporate Regulation
- Subsequent charge of violating article i206 - Neglect of Duty - of NanoTrasen Corporate Regulation, and review of Employee by the Employee's Head of Staff.
- Subsequent failure to follow Station Directives should result in suspension of contract, if not imprisonment until transfer to Central Command station.
"
- dat += "Obviously, dependant on the violation and actual crimes concerned, punishment may be escalated faster, with intent to ensure in the safety of station, equipment and crew.
"
+ dat += "Dependant on the violation and actual crimes concerned, punishment may be escalated faster, with intent to ensure in the safety of station, equipment and crew.
"
dat += "
"
dat += ""
diff --git a/code/modules/aurora/stationdirectives.dm b/code/modules/aurora/stationdirectives.dm
index fed2114f..096a5e45 100644
--- a/code/modules/aurora/stationdirectives.dm
+++ b/code/modules/aurora/stationdirectives.dm
@@ -52,10 +52,10 @@
dat += ""
if(3)
dat += "Regarding Station Directives
"
- dat += "The Station Directives are a set of specific orders and directives issued and enforced aboard a specific NanoTrasen Corporation installation. This terminal provides access to orders and directives enforced aboard the
NSS Aurora. Note that these are only enforced upon NanoTrasen Employees, and not civilian orotherwise visitors, unless ruled otherwise by sector specific Central Command.
"
+ dat += "
The Station Directives are a set of specific orders and directives issued and enforced aboard a specific NanoTrasen Corporation installation. This terminal provides access to orders and directives enforced aboard the
NSS Aurora. Note that these are only enforced upon NanoTrasen Employees, and not civilians or visitors, unless ruled otherwise by sector specific Central Command.
"
dat += "Overwriting power of general NanoTrasen Corporate Regulation is given to the Station Directives. Should a conflict emerge, the Station Directives active aboard the specific installation are to be adhered to, over Corporate Regulation.
"
dat += "Punishment for a violation of Station Directives should be escalated in the following fashion:
- Verbal warning, and citation. Ensure that the Employee is familiar with the Station Directives.
- Charge of violating article i111 - Failure to Execute an Order - of NanoTrasen Corporate Regulation
- Subsequent charge of violating article i206 - Neglect of Duty - of NanoTrasen Corporate Regulation, and review of Employee by the Employee's Head of Staff.
- Subsequent failure to follow Station Directives should result in suspension of contract, if not imprisonment until transfer to Central Command station.
"
- dat += "Obviously, dependant on the violation and actual crimes concerned, punishment may be escalated faster, with intent to ensure in the safety of station, equipment and crew.
"
+ dat += "Dependant on the violation and actual crimes concerned, punishment may be escalated faster, with intent to ensure in the safety of station, equipment and crew.
"
dat += "
"
usr << browse("[dat]", "window=station_directives;size=400x400")
\ No newline at end of file