diff --git a/blastmud_game/src/message_handler/user_commands/look.rs b/blastmud_game/src/message_handler/user_commands/look.rs index fc1c57ca..0e5fe671 100644 --- a/blastmud_game/src/message_handler/user_commands/look.rs +++ b/blastmud_game/src/message_handler/user_commands/look.rs @@ -50,7 +50,7 @@ pub async fn describe_normal_item(ctx: &VerbContext<'_>, item: &Item) -> UResult let all_groups: Vec>> = items .iter() - .group_by(|i| i.display_for_sentence(true, 1, false)) + .group_by(|i| (i.display_for_sentence(true, 1, false), &i.action_type)) .into_iter() .map(|(_, g)|g.collect::>>()) .collect::>>>();