Skip to content

Commit

Permalink
Alphabetises letter component in book/vendor (#3758)
Browse files Browse the repository at this point in the history
  • Loading branch information
BatElite committed Mar 4, 2021
1 parent 8713b65 commit dddddc2
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion code/modules/vending/vending.dm
Expand Up @@ -1361,6 +1361,7 @@
product_list += new/datum/data/vending_product(/obj/item/mechanics/hscan, 30)
product_list += new/datum/data/vending_product(/obj/item/mechanics/instrumentPlayer, 10)
product_list += new/datum/data/vending_product(/obj/item/mechanics/ledcomp, 30)
product_list += new/datum/data/vending_product(/obj/item/mechanics/screen, 30)
product_list += new/datum/data/vending_product(/obj/item/mechanics/miccomp, 30)
product_list += new/datum/data/vending_product(/obj/item/mechanics/orcomp, 30)
product_list += new/datum/data/vending_product(/obj/item/mechanics/pscan, 30)
Expand All @@ -1383,7 +1384,6 @@
product_list += new/datum/data/vending_product(/obj/item/mechanics/triplaser, 30)
product_list += new/datum/data/vending_product(/obj/item/mechanics/wificomp, 30)
product_list += new/datum/data/vending_product(/obj/item/mechanics/wifisplit, 30)
product_list += new/datum/data/vending_product(/obj/item/mechanics/screen, 30)

/obj/machinery/vending/computer3
name = "CompTech"
Expand Down
10 changes: 5 additions & 5 deletions code/obj/item/book.dm
Expand Up @@ -239,6 +239,11 @@
<br>The \"set rgb\" Input takes a Color in the HTML Color Code Format, for Example: #FF1200 .
<br>
<br>
<br><B>Letter Display Component:</B>
<br>Displays a single letter from the input signal.
<br>Set the letter index to choose which letter is displayed. For example, if the letter index is 2, and an input signal of "Hello" arrives, "E" will be displayed.
<br>
<br>
<br><B>Microphone Component:</B>
<br>Forwards nearby speech as signal.
<br>The "Toggle Show-Source" option determines whether the component adds the source's name to the signal or not.
Expand Down Expand Up @@ -313,11 +318,6 @@
<br>For example: Set the Trigger Field to \"user_id\". When a Signal with \"user_id=captain\" arrives the Component forwards \"captain\"
<br>
<br>
<br><B>Letter Display Component:</B>
<br>Displays a single letter from the input signal.
<br>Set the letter index to choose which letter is displayed. For example, if the letter index is 2, and an input signal of "Hello" arrives, "E" will be displayed.
<br>
<br>
"}

/obj/item/paper/book/cookbook
Expand Down

0 comments on commit dddddc2

Please sign in to comment.