From a8eebd17d03f5199370e510386dfe5ac23d5a6f9 Mon Sep 17 00:00:00 2001 From: DJSnapshot Date: Sun, 8 Dec 2013 12:25:00 -0800 Subject: [PATCH] Grammar fix and fix to c45 being declared twice in boxes.dm --- code/game/machinery/autolathe.dm | 2 +- code/modules/clothing/under/jobs/security.dm | 2 +- code/modules/projectiles/ammunition/boxes.dm | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/code/game/machinery/autolathe.dm b/code/game/machinery/autolathe.dm index 9826505fd0..d3fb30d371 100644 --- a/code/game/machinery/autolathe.dm +++ b/code/game/machinery/autolathe.dm @@ -57,7 +57,7 @@ var/global/list/autolathe_recipes_hidden = list( \ new /obj/item/weapon/weldingtool/largetank(), \ new /obj/item/weapon/handcuffs(), \ new /obj/item/ammo_magazine/a357(), \ - new /obj/item/ammo_magazine/c45(), \ + new /obj/item/ammo_magazine/c45m(), \ new /obj/item/ammo_casing/shotgun(), \ new /obj/item/ammo_casing/shotgun/dart(), \ /* new /obj/item/weapon/shield/riot(), */ \ diff --git a/code/modules/clothing/under/jobs/security.dm b/code/modules/clothing/under/jobs/security.dm index c35910d060..e6dda9c6f7 100644 --- a/code/modules/clothing/under/jobs/security.dm +++ b/code/modules/clothing/under/jobs/security.dm @@ -80,7 +80,7 @@ item_color = "polsuit" /obj/item/clothing/under/det/slob/verb/rollup() - set name = "Roll suit sleevels" + set name = "Roll suit sleeves" set category = "Object" set src in usr item_color = item_color == "polsuit" ? "polsuit_rolled" : "polsuit" diff --git a/code/modules/projectiles/ammunition/boxes.dm b/code/modules/projectiles/ammunition/boxes.dm index 87fa97ef69..ecbea58fc2 100644 --- a/code/modules/projectiles/ammunition/boxes.dm +++ b/code/modules/projectiles/ammunition/boxes.dm @@ -14,7 +14,7 @@ multiple_sprites = 1 -/obj/item/ammo_magazine/c45 +/obj/item/ammo_magazine/c45m name = "magazine (.45)" icon_state = "45" ammo_type = "/obj/item/ammo_casing/c45"