mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-06-23 23:24:55 +01:00
1fefd43422
## About The Pull Request <img width="196" height="24" alt="image" src="https://github.com/user-attachments/assets/bcfbdd1b-7ebe-4ea7-815a-526b3316396e" /> Fixes a few odd bits regarding vendor feedback, mostly clear from the diff and changelog. Bits of note: - `canLoadItem(...)` defaults to sending a message, to the `to_chat(...)` after was just duplicating it. - It was trying to warn about it not being able to accept any more products for a given category, but looking at the check before it it's checking not against the category but against the individual product record. Here we make it actually mention it's an issue with that item. ## Why It's Good For The Game Fixes jank. ## Changelog 🆑 fix: Trying to insert an item into a vendor that has reached its maximum capacity for that item no longer says "no space for any more /list", and no longer TRIES to say it has too much of that category. It now correctly says it can't accept any more of that item. fix: Trying to insert an item into a vendor that can hold it but you can't put it in no longer both says you insert the item into its input compartment while also sending an error message about not being able to put it in. fix: Trying to insert an item into a vendor that can't hold it no longer sends the error message twice. /🆑