diff --git a/code/game/objects/items/weapons/storage/backpack.dm b/code/game/objects/items/weapons/storage/backpack.dm index 79666c2eefa..5faa2c79968 100644 --- a/code/game/objects/items/weapons/storage/backpack.dm +++ b/code/game/objects/items/weapons/storage/backpack.dm @@ -33,15 +33,15 @@ if(!..(user, 1)) return if(!space_used) - to_chat(user, " \The [src] is empty.") + to_chat(user, " [src] is empty.") else if(space_used <= max_combined_w_class*0.6) - to_chat(user, " \The [src] still has plenty of remaining space.") + to_chat(user, " [src] still has plenty of remaining space.") else if(space_used <= max_combined_w_class*0.8) - to_chat(user, " \The [src] is beginning to run out of space.") + to_chat(user, " [src] is beginning to run out of space.") else if(space_used < max_combined_w_class) - to_chat(user, " \The [src] doesn't have much space left.") + to_chat(user, " [src] doesn't have much space left.") else - to_chat(user, " \The [src] is full.") + to_chat(user, " [src] is full.") /* * Backpack Types