From 6bae072739ac955b3849dd7335c5f55d0fe696fb Mon Sep 17 00:00:00 2001 From: sergeirocks100 <31294280+sergeirocks100@users.noreply.github.com> Date: Thu, 2 Feb 2023 09:41:20 -0500 Subject: [PATCH] Fixes a spelling error in the Reload Configuration confirmation dialog. (#73129) ## About The Pull Request This, as the title states, fixes a spelling error in the confirmation dialog for the Reload Configuration verb. Specifically, it changes "modificat**oi**ns" to "modificat**io**ns". ## Why It's Good For The Game It's nice to not have to look at spelling errors. ## Changelog :cl: spellcheck: The word "modifications" is now spelled correctly in the Reload Configuration confirmation dialog. /:cl: --- code/modules/admin/verbs/debug.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/admin/verbs/debug.dm b/code/modules/admin/verbs/debug.dm index 106139f59bb..8cece00fb58 100644 --- a/code/modules/admin/verbs/debug.dm +++ b/code/modules/admin/verbs/debug.dm @@ -861,7 +861,7 @@ set desc = "Force config reload to world default" if(!check_rights(R_DEBUG)) return - if(tgui_alert(usr, "Are you absolutely sure you want to reload the configuration from the default path on the disk, wiping any in-round modificatoins?", "Really reset?", list("No", "Yes")) == "Yes") + if(tgui_alert(usr, "Are you absolutely sure you want to reload the configuration from the default path on the disk, wiping any in-round modifications?", "Really reset?", list("No", "Yes")) == "Yes") config.admin_reload() /// A debug verb to check the sources of currently running timers