From a973be8f36ab2927cdad3884d9a102f934b91675 Mon Sep 17 00:00:00 2001 From: CyrusJazzberry Date: Sat, 3 Sep 2016 15:10:53 -0500 Subject: [PATCH] Barber's Scissors grammar fix Just fixes the barber's scissors attack grammar. No more "has been beautifully cuts"! --- code/game/objects/items/weapons/scissors.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/objects/items/weapons/scissors.dm b/code/game/objects/items/weapons/scissors.dm index d213b6bcbb6..05a50200e7d 100644 --- a/code/game/objects/items/weapons/scissors.dm +++ b/code/game/objects/items/weapons/scissors.dm @@ -15,7 +15,7 @@ desc = "A pair of scissors used by the barber." icon_state = "bscissor" item_state = "scissor" - attack_verb = list("beautifully slices", "artistically cuts", "smoothly stabs", "quickly jabs") + attack_verb = list("beautifully sliced", "artistically cut", "smoothly stabbed", "quickly jabbed") /obj/item/weapon/scissors/attack(mob/living/carbon/M as mob, mob/user as mob) if(user.a_intent != "help")