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!")