Fixing a few grammar issues (#23842)

* fixing some typos and spacings

* another one

* not that one

* even more
This commit is contained in:
Henri215
2024-01-25 14:44:38 -03:00
committed by GitHub
parent 867da454c6
commit 4237f77be1
42 changed files with 59 additions and 59 deletions

View File

@@ -295,14 +295,14 @@
for(var/mob/dead/observer/g in get_ghosts())
if(g.antagHUD)
g.antagHUD = FALSE // Disable it on those that have it enabled
to_chat(g, "<span class='danger'>The Administrators have disabled AntagHUD </span>")
to_chat(g, "<span class='danger'>The Administrators have disabled AntagHUD.</span>")
GLOB.configuration.general.allow_antag_hud = FALSE
to_chat(src, "<span class='danger'>AntagHUD usage has been disabled</span>")
action = "disabled"
else
for(var/mob/dead/observer/g in get_ghosts())
if(!g.client.holder) // Add the verb back for all non-admin ghosts
to_chat(g, "<span class='boldnotice'>The Administrators have enabled AntagHUD </span>")// Notify all observers they can now use AntagHUD
to_chat(g, "<span class='boldnotice'>The Administrators have enabled AntagHUD.</span>")// Notify all observers they can now use AntagHUD
GLOB.configuration.general.allow_antag_hud = TRUE
action = "enabled"
@@ -330,7 +330,7 @@
else
for(var/mob/dead/observer/g in get_ghosts())
to_chat(g, "<span class='danger'>The administrator has placed restrictions on joining the round if you use AntagHUD</span>")
to_chat(g, "<span class='danger'>Your AntagHUD has been disabled, you may choose to re-enabled it but will be under restrictions </span>")
to_chat(g, "<span class='danger'>Your AntagHUD has been disabled, you may choose to re-enabled it but will be under restrictions.</span>")
g.antagHUD = FALSE
GLOB.antag_hud_users -= g.ckey
action = "placed restrictions"