Make inventory show total weight if you have multiple of an item.

This commit is contained in:
Condorra 2023-02-23 21:12:32 +11:00
parent 9e754881e5
commit a9df230a08

View File

@ -44,7 +44,7 @@ impl UserVerb for Verb {
!ctx.session_dat.less_explicit_mode,
items.len(),
true
), weight(posdat.weight)));
), weight(items.len() as u64 * posdat.weight)));
}
}
if response == "" {