Fixes a ton of sentence starts with non capitalised improper nouns. (#37099)

* Fixes capitalisation on throwing stuff in disposals

* in fact, fixes it for everything

* even more

* outta here
This commit is contained in:
SECBATON GRIFFON
2024-09-17 04:37:36 +01:00
committed by GitHub
parent 33d1e3b50d
commit 0a37d67dc2
56 changed files with 98 additions and 100 deletions

View File

@@ -42,7 +42,7 @@
var/mob/living/carbon/C = target
if ((C.sdisabilities & BLIND) || (C.sight & BLIND))
to_chat(user, "<span class='warning'>\the [C] is blind!</span>")
to_chat(user, "<span class='warning'>\The [C] is blind!</span>")
return TRUE
var/success = C.vampire_affected(user.mind)
switch(success)