diff --git a/code/modules/library/lib_machines.dm b/code/modules/library/lib_machines.dm
index 99f0be8aa4..fee1a627d6 100644
--- a/code/modules/library/lib_machines.dm
+++ b/code/modules/library/lib_machines.dm
@@ -177,10 +177,10 @@ datum/borrowbook // Datum used to keep track of who has borrowed what when and f
dat += {"1. View General Inventory
2. View Checked Out Inventory
3. Check out a Book
- 4. Connect to External Archive
+ 4. Connect to NanoTrasen Archive
5. Upload New Title to Archive
6. Print a Bible
- 8. Access NT Internal Archive
"}
+ 8. Access Deprecated Archive
"}
if(src.emagged)
dat += "7. Access the Forbidden Lore Vault
"
if(src.arcanecheckout)
@@ -226,6 +226,7 @@ datum/borrowbook // Datum used to keep track of who has borrowed what when and f
(Commit Entry)
(Return to main menu)
"}
if(4)
+<<<<<<< HEAD
dat += "
External Archive
" //VOREStation Edit
establish_old_db_connection()
@@ -233,19 +234,22 @@ datum/borrowbook // Datum used to keep track of who has borrowed what when and f
if(!dbcon_old.IsConnected())
dat += "ERROR: Unable to contact External Archive. Please contact your system administrator for assistance."
+=======
+ dat += "NT Internal Archive
"
+ if(!all_books || !all_books.len)
+ dat += "ERROR Something has gone seriously wrong. Contact System Administrator for more information."
+>>>>>>> b3f9ecd... Reorganized Library Computer Menu (#7334)
else
- dat += {"(Order book by SS13BN)
-
+ dat += {"
| TITLE | \[Order\] |
"
+ for(var/name in all_books)
+ var/obj/item/weapon/book/masterbook = all_books[name]
+ var/id = masterbook.type
+ var/author = masterbook.author
+ var/title = masterbook.name
+ var/category = masterbook.libcategory
+ dat += "| [author] | [title] | [category] | \[Order\] |
"
dat += "
"
dat += "
(Return to main menu)
"
if(5)
@@ -278,20 +282,26 @@ datum/borrowbook // Datum used to keep track of who has borrowed what when and f
Yes.
No.
"}
if(8)
- dat += "NT Internal Archive
"
- if(!all_books || !all_books.len)
- dat += "ERROR Something has gone seriously wrong. Contact System Administrator for more information."
- else
- dat += {"
- | TITLE | \[Order\] |
"
+ dat += "Warning: System Administrator has slated this archive for removal. Personal uploads should be taken to the NT board of internal literature.
"
+
+ if(!dbcon_old.IsConnected())
+ dat += "ERROR: Unable to contact External Archive. Please contact your system administrator for assistance."
+ else
+ dat += {"(Order book by SS13BN)
+ "
dat += "
(Return to main menu)
"