Skip to content

Commit

Permalink
Vending machines no longer lie
Browse files Browse the repository at this point in the history
  • Loading branch information
BogCreature committed Oct 14, 2023
1 parent ca90138 commit d20c355
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tgui/packages/tgui/interfaces/Vending.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ const VendingRow = (props, context) => {
const { act, data } = useBackend(context);
const { product, productStock, custom } = props;
const { miningvendor, all_items_free, user } = data;
const free = all_items_free || product.price === 0 || !product.premium;
const free = all_items_free || product.price === 0;
const affix = miningvendor ? ' mp' : ' cr';
return (
<Table.Row>
Expand Down

0 comments on commit d20c355

Please sign in to comment.