Removed all prefixes of type 'paper - '

This commit is contained in:
Hubblenaut
2014-05-23 22:31:27 +02:00
parent 041254ddc5
commit e28ce8a366
6 changed files with 8 additions and 8 deletions

View File

@@ -248,7 +248,7 @@ Implants;
for (var/obj/machinery/computer/communications/comm in machines) for (var/obj/machinery/computer/communications/comm in machines)
if (!(comm.stat & (BROKEN | NOPOWER)) && comm.prints_intercept) if (!(comm.stat & (BROKEN | NOPOWER)) && comm.prints_intercept)
var/obj/item/weapon/paper/intercept = new /obj/item/weapon/paper( comm.loc ) var/obj/item/weapon/paper/intercept = new /obj/item/weapon/paper( comm.loc )
intercept.name = "paper - 'Cent. Com. Status Summary'" intercept.name = "Cent. Com. Status Summary"
intercept.info = intercepttext intercept.info = intercepttext
comm.messagetitle.Add("Cent. Com. Status Summary") comm.messagetitle.Add("Cent. Com. Status Summary")

View File

@@ -45,7 +45,7 @@
for (var/obj/machinery/computer/communications/comm in world) for (var/obj/machinery/computer/communications/comm in world)
if (!(comm.stat & (BROKEN | NOPOWER)) && comm.prints_intercept) if (!(comm.stat & (BROKEN | NOPOWER)) && comm.prints_intercept)
var/obj/item/weapon/paper/intercept = new /obj/item/weapon/paper( comm.loc ) var/obj/item/weapon/paper/intercept = new /obj/item/weapon/paper( comm.loc )
intercept.name = "paper - 'Cent. Com. Status Summary'" intercept.name = "Cent. Com. Status Summary"
intercept.info = intercepttext intercept.info = intercepttext
comm.messagetitle.Add("Cent. Com. Status Summary") comm.messagetitle.Add("Cent. Com. Status Summary")
@@ -116,7 +116,7 @@
for (var/obj/machinery/computer/communications/comm in world) for (var/obj/machinery/computer/communications/comm in world)
if (!(comm.stat & (BROKEN | NOPOWER)) && comm.prints_intercept) if (!(comm.stat & (BROKEN | NOPOWER)) && comm.prints_intercept)
var/obj/item/weapon/paper/intercept = new /obj/item/weapon/paper( comm.loc ) var/obj/item/weapon/paper/intercept = new /obj/item/weapon/paper( comm.loc )
intercept.name = "paper - 'Cent. Com. Status Summary'" intercept.name = "Cent. Com. Status Summary"
intercept.info = intercepttext intercept.info = intercepttext
comm.messagetitle.Add("Cent. Com. Status Summary") comm.messagetitle.Add("Cent. Com. Status Summary")
@@ -134,7 +134,7 @@
for (var/obj/machinery/computer/communications/comm in world) for (var/obj/machinery/computer/communications/comm in world)
if (!(comm.stat & (BROKEN | NOPOWER)) && comm.prints_intercept) if (!(comm.stat & (BROKEN | NOPOWER)) && comm.prints_intercept)
var/obj/item/weapon/paper/intercept = new /obj/item/weapon/paper( comm.loc ) var/obj/item/weapon/paper/intercept = new /obj/item/weapon/paper( comm.loc )
intercept.name = "paper - 'Cent. Com. Status Summary'" intercept.name = "Cent. Com. Status Summary"
intercept.info = intercepttext intercept.info = intercepttext
comm.messagetitle.Add("Cent. Com. Status Summary") comm.messagetitle.Add("Cent. Com. Status Summary")

View File

@@ -248,7 +248,7 @@
for (var/obj/machinery/computer/communications/comm in world) for (var/obj/machinery/computer/communications/comm in world)
if (!(comm.stat & (BROKEN | NOPOWER)) && comm.prints_intercept) if (!(comm.stat & (BROKEN | NOPOWER)) && comm.prints_intercept)
var/obj/item/weapon/paper/intercept = new /obj/item/weapon/paper( comm.loc ) var/obj/item/weapon/paper/intercept = new /obj/item/weapon/paper( comm.loc )
intercept.name = "paper - 'Cent. Com. Announcement'" intercept.name = "Cent. Com. Announcement"
intercept.info = message intercept.info = message
comm.messagetitle.Add("Cent. Com. Announcement") comm.messagetitle.Add("Cent. Com. Announcement")

View File

@@ -433,7 +433,7 @@
*/ */
/obj/item/weapon/paper/Cloning /obj/item/weapon/paper/Cloning
name = "paper - 'H-87 Cloning Apparatus Manual" name = "H-87 Cloning Apparatus Manual"
info = {"<h4>Getting Started</h4> info = {"<h4>Getting Started</h4>
Congratulations, your station has purchased the H-87 industrial cloning device!<br> Congratulations, your station has purchased the H-87 industrial cloning device!<br>
Using the H-87 is almost as simple as brain surgery! Simply insert the target humanoid into the scanning chamber and select the scan option to create a new profile!<br> Using the H-87 is almost as simple as brain surgery! Simply insert the target humanoid into the scanning chamber and select the scan option to create a new profile!<br>

View File

@@ -68,7 +68,7 @@
var/n_name = copytext(sanitize(input(usr, "What would you like to label the photo?", "Photo Labelling", null) as text), 1, MAX_NAME_LEN) var/n_name = copytext(sanitize(input(usr, "What would you like to label the photo?", "Photo Labelling", null) as text), 1, MAX_NAME_LEN)
//loc.loc check is for making possible renaming photos in clipboards //loc.loc check is for making possible renaming photos in clipboards
if(( (loc == usr || (loc.loc && loc.loc == usr)) && usr.stat == 0)) if(( (loc == usr || (loc.loc && loc.loc == usr)) && usr.stat == 0))
name = "[(n_name ? text("[n_name]") : null)]" name = "[(n_name ? text("[n_name]") : "photo")]"
add_fingerprint(usr) add_fingerprint(usr)
return return

View File

@@ -110,7 +110,7 @@
var/obj/item/weapon/paper/P = new /obj/item/weapon/paper( src.host.loc ) var/obj/item/weapon/paper/P = new /obj/item/weapon/paper( src.host.loc )
P.info = print_data P.info = print_data
if(print_title) if(print_title)
P.name = "paper - '[print_title]'" P.name = "[print_title]"
src.printing = 0 src.printing = 0
return return