From ef6aed1974831bb528d6c698be47f92de8b5f8f2 Mon Sep 17 00:00:00 2001 From: subject217 <38303698+subject217@users.noreply.github.com> Date: Tue, 2 Sep 2025 20:59:03 -0500 Subject: [PATCH] fixes a typo in an admin message about achievements cleanup (#92831) ## About The Pull Request the verb is achievements-admin-panel ## Why It's Good For The Game tells the admin what to actually type ## Changelog :cl: spellcheck: fixed a typo in the admin message about achievements cleanup /:cl: --- code/controllers/subsystem/achievements.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/controllers/subsystem/achievements.dm b/code/controllers/subsystem/achievements.dm index c53f519a6be..56a85284cd4 100644 --- a/code/controllers/subsystem/achievements.dm +++ b/code/controllers/subsystem/achievements.dm @@ -104,7 +104,7 @@ SUBSYSTEM_DEF(achievements) var/list/orphaned_keys = get_orphaned_keys(FALSE) if(orphaned_keys.len) - message_admins("Achievement metadata found without matching achievement, use Achievement-Admin-Panel verb to cleanup if necessary") + message_admins("Achievement metadata found without matching achievement, use Achievements-Admin-Panel verb to cleanup if necessary") /// returns list of metadata keys and versions in db with no matching achievement datum, either deleted achievements, or from server with code ahead of us. /datum/controller/subsystem/achievements/proc/get_orphaned_keys(include_archived = TRUE)