From 90b5c11fd448b3cd14dc54c5009998eef9cddccb Mon Sep 17 00:00:00 2001 From: firebudgy <153147550+firebudgy@users.noreply.github.com> Date: Wed, 10 Jul 2024 01:13:02 -0400 Subject: [PATCH] Fixes another singular typo within the code (#3188) ## About The Pull Request Fixes another typo within the code ## Why It's Good For The Game You have evaded my gaze for too long, Unqiue. You must perish for the sake of grammatical correctness. ## Changelog :cl: Cloudbreak code: Fixes a singular typo within the code. /:cl: --- code/modules/projectiles/guns/energy.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/projectiles/guns/energy.dm b/code/modules/projectiles/guns/energy.dm index 0341c04f2c06..07eb9a159897 100644 --- a/code/modules/projectiles/guns/energy.dm +++ b/code/modules/projectiles/guns/energy.dm @@ -331,7 +331,7 @@ . = ..() var/obj/item/ammo_casing/energy/shot = ammo_type[select] if(ammo_type.len > 1) - . += "You can switch firemodes by pressing the unqiue action key. By default, this is space" + . += "You can switch firemodes by pressing the unique action key. By default, this is space" if(cell) . += "\The [name]'s cell has [cell.percent()]% charge remaining." . += "\The [name] has [round(cell.charge/shot.e_cost)] shots remaining on [shot.select_name] mode."