Fix the fix to the pricequotes option

It was displaying price quotes even with the option off, when
removing items from a container.
This commit is contained in:
Alex Smith
2026-05-01 21:41:40 +01:00
parent d3f2ed4e47
commit e35af92d13
+1 -1
View File
@@ -1673,7 +1673,7 @@ doname_base(
nochrg ? "contents" : "for sale", pricebuf);
} else if (nochrg > 0) {
Concat(bp, 0, " (no charge)");
} else {
} else if (iflags.pricequotes && !objects[obj->otyp].oc_name_known) {
append_price_quote(bp, &bp_eos, obj->otyp);
}