Skip to content

Commit 85e51b3

Browse files
fixes all occurances of this (#37268)
1 parent d6090c4 commit 85e51b3

File tree

15 files changed

+23
-26
lines changed

15 files changed

+23
-26
lines changed

code/datums/datumvars.dm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -985,7 +985,7 @@ function loadPage(list) {
985985

986986
var/obj/item/weapon/gun/G = locate(href_list["projectile_edit"])
987987
if(!istype(G))
988-
to_chat(src, "Target must be a obj/item/weapon/gun!")
988+
to_chat(src, "Target must be an obj/item/weapon/gun!")
989989
return
990990

991991
gun_override(G)

code/game/machinery/syndicate_beacon.dm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@
8585
if (!reason)
8686
temptext = ""
8787
return
88-
message_admins("[key_name(M)] wants to join the Syndicate by using a an already used syndicate beacon. [reason ? "Cover e-mail: [reason]" : "They didn't make a case for themselves."]. (<a href='?_src_=holder;syndbeaconpermission=1;syndbeacon=\ref[src];user=\ref[M];answer=1'>ACCEPT</a>/<a href='?_src_=holder;syndbeaconpermission=1;syndbeacon=\ref[src];user=\ref[M];answer=2'>DENY</a>/<a href='?_src_=holder;syndbeaconpermission=1;syndbeacon=\ref[src];user=\ref[M];answer=3'>DESTROY BEACON</a>)")
88+
message_admins("[key_name(M)] wants to join the Syndicate by using an already used syndicate beacon. [reason ? "Cover e-mail: [reason]" : "They didn't make a case for themselves."]. (<a href='?_src_=holder;syndbeaconpermission=1;syndbeacon=\ref[src];user=\ref[M];answer=1'>ACCEPT</a>/<a href='?_src_=holder;syndbeaconpermission=1;syndbeacon=\ref[src];user=\ref[M];answer=2'>DENY</a>/<a href='?_src_=holder;syndbeaconpermission=1;syndbeacon=\ref[src];user=\ref[M];answer=3'>DESTROY BEACON</a>)")
8989

9090
temptext = "<i>Currently awaiting decision from the HR department...</i><br>"
9191
updateUsrDialog()

code/game/objects/items/devices/hologram_projector.dm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
/obj/item/device/hologram_projector/proc/spawn_hologram()
4848
set category = "pAI Commands"
4949
set name = "Spawn Hologram"
50-
set desc = "Display a a visual representation of yourself to those nearby!"
50+
set desc = "Display a visual representation of yourself to those nearby!"
5151

5252
var/obj/item/device/hologram_projector/mine = usr.loc.loc //the pai in the card in the projector (that's how MULEbots do it)
5353
if(istype(mine))

code/game/objects/items/robot/robot_upgrades.dm

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -279,7 +279,7 @@
279279

280280
/obj/item/borg/upgrade/organ_gripper
281281
name = "medical cyborg organ gripper upgrade"
282-
desc = "Used to give a medical cyborg a organ gripper."
282+
desc = "Used to give a medical cyborg an organ gripper."
283283
icon = 'icons/obj/device.dmi'
284284
icon_state = "gripper-medical"
285285
required_modules = list(MEDICAL_MODULE, SYNDIE_CRISIS_MODULE)
@@ -307,7 +307,7 @@
307307

308308
/obj/item/borg/upgrade/magnetic_gripper
309309
name = "engineering cyborg magnetic gripper upgrade"
310-
desc = "Used to give a engineering cyborg a magnetic gripper."
310+
desc = "Used to give an engineering cyborg a magnetic gripper."
311311
icon = 'icons/obj/device.dmi'
312312
icon_state = "gripper"
313313
required_modules = list(ENGINEERING_MODULE)

code/game/objects/items/weapons/stock_parts.dm

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919
/obj/item/weapon/stock_parts/console_screen
2020
name = "console screen"
21-
desc = "Used in the construction of computers and other devices with a interactive console."
21+
desc = "Used in the construction of computers and other devices with an interactive console."
2222
icon_state = "screen"
2323
origin_tech = Tc_MATERIALS + "=1"
2424
starting_materials = list(MAT_GLASS = 200)
@@ -104,7 +104,6 @@
104104
//currently uses their upgraded qualities.
105105
/obj/item/weapon/stock_parts/console_screen/reinforced
106106
name = "reinforced console screen"
107-
desc = "Used in the construction of computers and other devices with a interactive console."
108107
icon_state = "rscreen"
109108
origin_tech = Tc_MATERIALS + "=3"
110109
rating = 2
@@ -155,7 +154,6 @@
155154

156155
/obj/item/weapon/stock_parts/console_screen/reinforced/plasma
157156
name = "plasma console screen"
158-
desc = "Used in the construction of computers and other devices with a interactive console."
159157
icon_state = "pscreen"
160158
origin_tech = Tc_MATERIALS + "=5;" + Tc_PLASMATECH + "=3"
161159
rating = 3
@@ -207,7 +205,6 @@
207205

208206
/obj/item/weapon/stock_parts/console_screen/reinforced/plasma/rplasma
209207
name = "reinforced plasma console screen"
210-
desc = "Used in the construction of computers and other devices with a interactive console."
211208
icon_state = "pscreen"
212209
origin_tech = Tc_MATERIALS + "=7;" + Tc_PLASMATECH + "=3"
213210
rating = 4

code/modules/clothing/suits/miscellaneous.dm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -967,7 +967,7 @@ var/list/tag_suits_list = list()
967967

968968
/obj/item/clothing/suit/kimono/sakura
969969
name = "sakura kimono"
970-
desc = "A pale-pink, nearly white, kimono with a red and gold obi. There is a embroidered design of cherry blossom flowers covering the kimono."
970+
desc = "A pale-pink, nearly white, kimono with a red and gold obi. There is an embroidered design of cherry blossom flowers covering the kimono."
971971
icon_state = "sakura_kimono"
972972
item_state = "sakura_kimono"
973973
species_fit = list(INSECT_SHAPED)

code/modules/paperwork/papers_preformatted.dm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
/obj/item/weapon/paper/Toxin
88
name = "paper- 'Chemical Information'"
9-
info = "Known Onboard Toxins:<br>n\tGrade A Semi-Liquid Plasma:<br>n\t\tHighly poisonous. You cannot sustain concentrations above 15 units.<br>n\t\tA gas mask fails to filter plasma after 50 units.<br>n\t\tWill attempt to diffuse like a gas.<br>n\t\tFiltered by scrubbers.<br>n\t\tThere is a bottled version which is very different<br>n\t\t\tfrom the version found in canisters!<br>n<br>n\t\tWARNING: Highly Flammable. Keep away from heat sources<br>n\t\texcept in a enclosed fire area!<br>n\t\tWARNING: It is a crime to use this without authorization.<br>nKnown Onboard Anti-Toxin:<br>n\tAnti-Toxin Type 01P: Works against Grade A Plasma.<br>n\t\tBest if injected directly into bloodstream.<br>n\t\tA full injection is in every regular Med-Kit.<br>n\t\tSpecial toxin Kits hold around 7.<br>n<br>nKnown Onboard Chemicals (other):<br>n\tRejuvenation T#001:<br>n\t\tEven 1 unit injected directly into the bloodstream<br>n\t\t\twill cure paralysis and sleep toxins.<br>n\t\tIf administered to a dying patient it will prevent<br>n\t\t\tfurther damage for about units*3 seconds.<br>n\t\t\tit will not cure them or allow them to be cured.<br>n\t\tIt can be administeredd to a non-dying patient<br>n\t\t\tbut the chemicals disappear just as fast.<br>n\tSleep Toxin T#054:<br>n\t\t5 units wilkl induce precisely 1 minute of sleep.<br>n\t\t\tThe effect are cumulative.<br>n\t\tWARNING: It is a crime to use this without authorization"
9+
info = "Known Onboard Toxins:<br>n\tGrade A Semi-Liquid Plasma:<br>n\t\tHighly poisonous. You cannot sustain concentrations above 15 units.<br>n\t\tA gas mask fails to filter plasma after 50 units.<br>n\t\tWill attempt to diffuse like a gas.<br>n\t\tFiltered by scrubbers.<br>n\t\tThere is a bottled version which is very different<br>n\t\t\tfrom the version found in canisters!<br>n<br>n\t\tWARNING: Highly Flammable. Keep away from heat sources<br>n\t\texcept in an enclosed fire area!<br>n\t\tWARNING: It is a crime to use this without authorization.<br>nKnown Onboard Anti-Toxin:<br>n\tAnti-Toxin Type 01P: Works against Grade A Plasma.<br>n\t\tBest if injected directly into bloodstream.<br>n\t\tA full injection is in every regular Med-Kit.<br>n\t\tSpecial toxin Kits hold around 7.<br>n<br>nKnown Onboard Chemicals (other):<br>n\tRejuvenation T#001:<br>n\t\tEven 1 unit injected directly into the bloodstream<br>n\t\t\twill cure paralysis and sleep toxins.<br>n\t\tIf administered to a dying patient it will prevent<br>n\t\t\tfurther damage for about units*3 seconds.<br>n\t\t\tit will not cure them or allow them to be cured.<br>n\t\tIt can be administeredd to a non-dying patient<br>n\t\t\tbut the chemicals disappear just as fast.<br>n\tSleep Toxin T#054:<br>n\t\t5 units will induce precisely 1 minute of sleep.<br>n\t\t\tThe effect are cumulative.<br>n\t\tWARNING: It is a crime to use this without authorization"
1010

1111
/obj/item/weapon/paper/courtroom
1212
name = "paper- 'A Crash Course in Legal SOP on SS13'"

code/modules/reagents/reagent_containers/food/snacks.dm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1705,7 +1705,7 @@
17051705

17061706
/obj/item/weapon/reagent_containers/food/snacks/bearburger
17071707
name = "bear burger"
1708-
desc = "Fits perfectly in any pic-a-nic basket. Oh bothering to grizzle into this won't be a boo-boo. Honey, it would be beary foolish to hibernate on such a unbearably, ursa majorly good treat!"
1708+
desc = "Fits perfectly in any pic-a-nic basket. Oh bothering to grizzle into this won't be a boo-boo. Honey, it would be beary foolish to hibernate on such an unbearably, ursa majorly good treat!"
17091709
icon_state = "bearburger"
17101710
food_flags = FOOD_MEAT
17111711
base_crumb_chance = 20

code/modules/reagents/reagents/reagents_tools.dm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@
166166
/datum/reagent/pacid
167167
name = "Polytrinic Acid"
168168
id = PACID
169-
description = "Polytrinic acid is a an extremely corrosive chemical substance."
169+
description = "Polytrinic acid is an extremely corrosive chemical substance."
170170
reagent_state = REAGENT_STATE_LIQUID
171171
color = "#8E18A9" //rgb: 142, 24, 169
172172
custom_metabolism = 0.5

code/modules/research/designs/AI_modules.dm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@
104104

105105
/datum/design/asimov
106106
name = "Core Module Design (Asimov)"
107-
desc = "Allows for the construction of a Asimov AI Core Module."
107+
desc = "Allows for the construction of an Asimov AI Core Module."
108108
id = "asimov_module"
109109
req_tech = list(Tc_PROGRAMMING = 3, Tc_MATERIALS = 6)
110110
build_type = IMPRINTER

0 commit comments

Comments
 (0)