Add "standing" to character descriptions.

This commit is contained in:
Condorra 2022-12-29 23:20:07 +11:00
parent c39803898b
commit dc71999591

View File

@ -107,6 +107,8 @@ async fn list_item_contents<'l>(ctx: &'l VerbContext<'_>, item: &'l Item) -> URe
match head.action_type { match head.action_type {
LocationActionType::Sitting => buf.push_str("sitting "), LocationActionType::Sitting => buf.push_str("sitting "),
LocationActionType::Reclining => buf.push_str("reclining "), LocationActionType::Reclining => buf.push_str("reclining "),
LocationActionType::Normal | LocationActionType::Attacking(_) if is_creature =>
buf.push_str("standing "),
_ => {} _ => {}
} }
buf.push_str("here"); buf.push_str("here");