Skip to content

Commit 9cb01e5

Browse files
authored
Fixes some spacing errors + spellchecks (#11464)
# About the pull request Just a few spacing errors after the beginning of a string. And spellchecks. # Explain why it's good for the game Syntax and spell checking is good. # Testing Photographs and Procedure <details> <summary>Screenshots & Videos</summary> Put screenshots and videos here with an empty line between the screenshots and the `<details>` tags. </details> # Changelog :cl: Puckaboo2 code: Fixes some spacing errors. spellcheck: Spellchecks some stuff. /:cl:
1 parent 8a2ff26 commit 9cb01e5

File tree

10 files changed

+23
-23
lines changed

10 files changed

+23
-23
lines changed

code/game/machinery/bots/mulebot.dm

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@
150150
SPAN_NOTICE("You repair [src]!")
151151
)
152152
else
153-
to_chat(user, SPAN_NOTICE(" [src] does not need a repair!"))
153+
to_chat(user, SPAN_NOTICE("[src] does not need a repair!"))
154154
else if(load && ismob(load)) // chance to knock off rider
155155
if(prob(1+I.force * 2))
156156
unload(0)
@@ -410,15 +410,15 @@
410410
if (held_item && HAS_TRAIT(held_item, TRAIT_TOOL_MULTITOOL))
411411
switch(href_list["wire"])
412412
if("1","2")
413-
to_chat(usr, SPAN_NOTICE(" [icon2html(src, usr)] The charge light flickers."))
413+
to_chat(usr, SPAN_NOTICE("[icon2html(src, usr)] The charge light flickers."))
414414
if("4")
415-
to_chat(usr, SPAN_NOTICE(" [icon2html(src, usr)] The external warning lights flash briefly."))
415+
to_chat(usr, SPAN_NOTICE("[icon2html(src, usr)] The external warning lights flash briefly."))
416416
if("8")
417-
to_chat(usr, SPAN_NOTICE(" [icon2html(src, usr)] The load platform clunks."))
417+
to_chat(usr, SPAN_NOTICE("[icon2html(src, usr)] The load platform clunks."))
418418
if("16", "32")
419-
to_chat(usr, SPAN_NOTICE(" [icon2html(src, usr)] The drive motor whines briefly."))
419+
to_chat(usr, SPAN_NOTICE("[icon2html(src, usr)] The drive motor whines briefly."))
420420
else
421-
to_chat(usr, SPAN_NOTICE(" [icon2html(src, usr)] You hear a radio crackle."))
421+
to_chat(usr, SPAN_NOTICE("[icon2html(src, usr)] You hear a radio crackle."))
422422
else
423423
to_chat(usr, SPAN_NOTICE(" You need a multitool!"))
424424

code/game/objects/items/books/book.dm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@
114114
/obj/item/book/attack(mob/living/carbon/M as mob, mob/living/carbon/user as mob)
115115
if(user.zone_selected == "eyes")
116116
user.visible_message(SPAN_NOTICE("You open up the book and show it to [M]. "),
117-
SPAN_NOTICE(" [user] opens up a book and shows it to [M]. "))
117+
SPAN_NOTICE("[user] opens up a book and shows it to [M]. "))
118118
show_browser(M, "<body class='paper'><TT><I>Penned by [author].</I></TT> <BR>[dat]</body>", "window=book")
119119

120120
/obj/item/lore_book

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,15 +78,15 @@
7878
icon_state = "sword[sword_color]"
7979
w_class = SIZE_LARGE
8080
playsound(user, 'sound/weapons/saberon.ogg', 25, 1)
81-
to_chat(user, SPAN_NOTICE(" [src] is now active."))
81+
to_chat(user, SPAN_NOTICE("[src] is now active."))
8282

8383
else
8484
force = 3
8585
heat_source = 0
8686
icon_state = "[base_sword_icon]0"
8787
w_class = SIZE_SMALL
8888
playsound(user, 'sound/weapons/saberoff.ogg', 25, 1)
89-
to_chat(user, SPAN_NOTICE(" [src] can now be concealed."))
89+
to_chat(user, SPAN_NOTICE("[src] can now be concealed."))
9090

9191
if(istype(user,/mob/living/carbon/human))
9292
var/mob/living/carbon/human/H = user

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -148,15 +148,15 @@
148148
icon_state = "eshield[active]"
149149
w_class = SIZE_LARGE
150150
playsound(user, 'sound/weapons/saberon.ogg', 25, 1)
151-
to_chat(user, SPAN_NOTICE(" [src] is now active."))
151+
to_chat(user, SPAN_NOTICE("[src] is now active."))
152152
shield_chance = readied_block
153153

154154
else
155155
force = 3
156156
icon_state = "eshield[active]"
157157
w_class = SIZE_TINY
158158
playsound(user, 'sound/weapons/saberoff.ogg', 25, 1)
159-
to_chat(user, SPAN_NOTICE(" [src] can now be concealed."))
159+
to_chat(user, SPAN_NOTICE("[src] can now be concealed."))
160160
shield_chance = SHIELD_CHANCE_NONE
161161

162162
if(istype(user,/mob/living/carbon/human))

code/modules/cm_marines/m2c.dm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -493,7 +493,7 @@
493493
return
494494
if((rounds > 0) && (user.a_intent & (INTENT_GRAB)))
495495
playsound(src.loc, 'sound/items/m56dauto_load.ogg', 75, 1)
496-
user.visible_message(SPAN_NOTICE(" [user] removes [src]'s ammo box."),SPAN_NOTICE(" You remove [src]'s ammo box, preparing the gun for disassembly."))
496+
user.visible_message(SPAN_NOTICE("[user] removes [src]'s ammo box."),SPAN_NOTICE(" You remove [src]'s ammo box, preparing the gun for disassembly."))
497497
var/obj/item/ammo_magazine/m2c/used_ammo = new(user.loc)
498498
used_ammo.current_rounds = rounds
499499
user.put_in_active_hand(used_ammo)

code/modules/cm_preds/yaut_weapons.dm

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@
146146
. += "Stack up your combo meter by using [SPAN_RED("HARM")] intent, you can then use these combo stacks on different intents to do different finishers."
147147
. += "Finish your combo on [SPAN_GREEN("HELP")] intent to slam the target to the ground, incapacitating them for a few seconds, if the target is a xenomorph you do extra damage as well."
148148
. += "Finish your combo on [SPAN_BLUE("SHOVE")] intent to throw the target away from you, if you have some chains wrapped around the gauntlet, you'll pull them back towards you. If you are using the special ability, the throw range will be further."
149-
. += "Finish your combo on [SPAN_ORANGE("GRAB")] intent to do an execution that instantly kills your target, they must already be unconcious or in critical state."
149+
. += "Finish your combo on [SPAN_ORANGE("GRAB")] intent to do an execution that instantly kills your target, they must already be unconscious or in critical state."
150150

151151
/obj/item/weapon/bracer_attachment/chain_gauntlets/attack(mob/living/carbon/target, mob/living/carbon/human/user)
152152
. = ..()
@@ -732,7 +732,7 @@
732732
if(isyautja(hit_atom))
733733
var/mob/living/carbon/human/human = hit_atom
734734
if(human.put_in_hands(src))
735-
hit_atom.visible_message(SPAN_NOTICE(" [hit_atom] expertly catches [src] out of the air. "),
735+
hit_atom.visible_message(SPAN_NOTICE("[hit_atom] expertly catches [src] out of the air. "),
736736
SPAN_NOTICE(" You easily catch [src]. "))
737737
return
738738
..()
@@ -1097,7 +1097,7 @@
10971097
busy_fishing = TRUE
10981098
user.visible_message(SPAN_NOTICE("[user] starts aiming \the [src] at the water..."), SPAN_NOTICE("You prepare to catch something in the water..."), max_distance = 3)
10991099
if(do_after(user, 5 SECONDS, INTERRUPT_ALL, BUSY_ICON_HOSTILE))
1100-
if(prob(60)) // fishing rods are prefered
1100+
if(prob(60)) // fishing rods are preferred
11011101
busy_fishing = FALSE
11021102
to_chat(user, SPAN_WARNING("You fail to catch anything!"))
11031103
return
@@ -1776,7 +1776,7 @@
17761776

17771777
/obj/item/weapon/gun/bow
17781778
name = "hunting bow"
1779-
desc = "An abnormal-sized weapon with an exeptionally tight string. Requires extraordinary strength to draw."
1779+
desc = "An abnormal-sized weapon with an exceptionally tight string. Requires extraordinary strength to draw."
17801780
icon = 'icons/obj/items/hunter/pred_gear.dmi'
17811781
icon_state = "bow"
17821782
item_state = "bow"

code/modules/economy/ATM.dm

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ log transactions
5050
/obj/structure/machinery/atm/attackby(obj/item/I as obj, mob/user as mob)
5151
if(inoperable())
5252
to_chat(user, SPAN_NOTICE("You try to use it ,but it appears to be unpowered!"))
53-
return //so it doesnt brazil IDs when unpowered
53+
return //so it doesn't brazil IDs when unpowered
5454
if(istype(I, /obj/item/card))
5555
var/obj/item/card/id/idcard = I
5656
if(!held_card)
@@ -280,7 +280,7 @@ log transactions
280280
T.time = worldtime2text()
281281
authenticated_account.transaction_log.Add(T)
282282

283-
to_chat(usr, SPAN_NOTICE(" [icon2html(src, usr)] Access granted. Welcome user '[authenticated_account.owner_name].'"))
283+
to_chat(usr, SPAN_NOTICE("[icon2html(src, usr)] Access granted. Welcome user '[authenticated_account.owner_name].'"))
284284

285285
previous_account_number = tried_account_num
286286
if("e_withdrawal")

code/modules/mob/living/simple_animal/friendly/farm_animals.dm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -238,7 +238,7 @@ GLOBAL_VAR_INIT(chicken_count, 0)
238238
eggsleft += rand(1, 4)
239239
//world << eggsleft
240240
else
241-
to_chat(user, SPAN_NOTICE(" [name] doesn't seem hungry!"))
241+
to_chat(user, SPAN_NOTICE("[name] doesn't seem hungry!"))
242242
else
243243
..()
244244

code/modules/mob/living/simple_animal/friendly/mouse.dm

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@
2121
response_harm = "stamps on the"
2222
layer = ABOVE_LYING_MOB_LAYER
2323
min_oxy = 16 //Require at least 16kPA oxygen
24-
minbodytemp = 223 //Below -50 Degrees Celcius
25-
maxbodytemp = 323 //Above 50 Degrees Celcius
24+
minbodytemp = 223 //Below -50 Degrees Celsius
25+
maxbodytemp = 323 //Above 50 Degrees Celsius
2626
universal_speak = FALSE
2727
universal_understand = TRUE
2828
holder_type = /obj/item/holder/mouse
@@ -91,7 +91,7 @@
9191
wander = TRUE
9292
else if(!stat && prob(5))
9393
var/mob/M = AM
94-
to_chat(M, SPAN_NOTICE(" [icon2html(src, M)] Squeek!"))
94+
to_chat(M, SPAN_NOTICE("[icon2html(src, M)] Squeek!"))
9595
M << 'sound/effects/mousesqueek.ogg'
9696
..()
9797

code/modules/mob/living/simple_animal/friendly/spiderbot.dm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@
9191
for(var/mob/W in viewers(user, null))
9292
W.show_message(text(SPAN_DANGER("[user] has spot-welded some of the damage to [src]!")), SHOW_MESSAGE_VISIBLE)
9393
else
94-
to_chat(user, SPAN_NOTICE(" [src] is undamaged!"))
94+
to_chat(user, SPAN_NOTICE("[src] is undamaged!"))
9595
else
9696
to_chat(user, "Need more welding fuel!")
9797
return

0 commit comments

Comments
 (0)