From 5345de448b0763f3d67e6dece8b8e416913e63c2 Mon Sep 17 00:00:00 2001 From: Couls Date: Sun, 11 Aug 2019 20:18:34 -0400 Subject: [PATCH] review fix --- code/modules/clothing/shoes/magboots.dm | 2 +- code/modules/clothing/shoes/miscellaneous.dm | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/clothing/shoes/magboots.dm b/code/modules/clothing/shoes/magboots.dm index f51f1f13af2..7a5bd2255da 100644 --- a/code/modules/clothing/shoes/magboots.dm +++ b/code/modules/clothing/shoes/magboots.dm @@ -87,7 +87,7 @@ obj/item/clothing/shoes/magboots/syndie/advance //For the Syndicate Strike Team if(!isliving(user)) return if(user.get_active_hand() != src) - to_chat(user, "You must hold the [src] in your hand to do this.") + to_chat(user, "You must hold [src] in your hand to do this.") return if(!enabled_waddle) to_chat(user, "You switch off the waddle dampeners!") diff --git a/code/modules/clothing/shoes/miscellaneous.dm b/code/modules/clothing/shoes/miscellaneous.dm index 801004bbca8..bca650a30b1 100644 --- a/code/modules/clothing/shoes/miscellaneous.dm +++ b/code/modules/clothing/shoes/miscellaneous.dm @@ -79,7 +79,7 @@ if(!isliving(user)) return if(user.get_active_hand() != src) - to_chat(user, "You must hold the [src] in your hand to do this.") + to_chat(user, "You must hold [src] in your hand to do this.") return if(!enabled_waddle) to_chat(user, "You switch off the waddle dampeners!")