From 73bf1cf6a4a4eaf2ceeb2ed22882b99e6b2a7c1b Mon Sep 17 00:00:00 2001 From: Vekter Date: Thu, 3 Aug 2023 08:52:06 -0500 Subject: [PATCH] Fixes typo in progressbar.dm and progress bar sprite file name (#77299) ## About The Pull Request I gotta wonder how long it's been like that. ## Why It's Good For The Game Fixes #77295 ## Changelog :cl: Vekter spellcheck: Fixed a typo in progressbar.dm and the file name for the progress bar sprites. /:cl: --- code/datums/progressbar.dm | 2 +- icons/effects/{progessbar.dmi => progressbar.dmi} | Bin 2 files changed, 1 insertion(+), 1 deletion(-) rename icons/effects/{progessbar.dmi => progressbar.dmi} (100%) diff --git a/code/datums/progressbar.dm b/code/datums/progressbar.dm index d4ff4496ac4..a9f875bd088 100644 --- a/code/datums/progressbar.dm +++ b/code/datums/progressbar.dm @@ -34,7 +34,7 @@ return goal = goal_number bar_loc = target - bar = image('icons/effects/progessbar.dmi', bar_loc, "prog_bar_0") + bar = image('icons/effects/progressbar.dmi', bar_loc, "prog_bar_0") SET_PLANE_EXPLICIT(bar, ABOVE_HUD_PLANE, User) bar.appearance_flags = APPEARANCE_UI_IGNORE_ALPHA user = User diff --git a/icons/effects/progessbar.dmi b/icons/effects/progressbar.dmi similarity index 100% rename from icons/effects/progessbar.dmi rename to icons/effects/progressbar.dmi