Add "standing" to character descriptions.
This commit is contained in:
parent
c39803898b
commit
dc71999591
@ -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");
|
||||||
|
Loading…
Reference in New Issue
Block a user