WebUI: Raw Add Item doesn't have item amount #2786

Open
opened 2025-09-17 03:13:39 -07:00 by Animan8000 · 4 comments
Contributor

Raw doesn't have that input box thingy on the left, for the item amount (unlike regular Add Items), forcing you to input the same thing multiple times.

{5BAD15B5-BCA5-4988-9B68-FC174D9C146F}.png

vs. regular one:

{6D46E7BE-C235-4FC0-AB9D-C27BD57B3057}.png
Raw doesn't have that input box thingy on the left, for the item amount (unlike regular Add Items), forcing you to input the same thing multiple times. <img width="910" alt="{5BAD15B5-BCA5-4988-9B68-FC174D9C146F}.png" src="attachments/d2d5dd01-b252-4e68-9251-6e66f23f344c"> vs. regular one: <img width="926" alt="{6D46E7BE-C235-4FC0-AB9D-C27BD57B3057}.png" src="attachments/748c824e-5d38-42d6-a35a-d5b7b1f95983">
Sainan added the
enhancement
label 2025-09-17 03:22:06 -07:00

Let's say I accidentally write /Lotus/Powersuits/Werewalf/Werewolf with item count 99999. What should I do with the Warframe card in the webui?

Let's say I accidentally write `/Lotus/Powersuits/Werewalf/Werewolf` with item count 99999. What should I do with the Warframe card in the webui?
Author
Contributor

Let's say I accidentally write /Lotus/Powersuits/Werewalf/Werewolf with item count 99999. What should I do with the Warframe card in the webui?

Well that is up to the user, whatever odd thing they may wanna add. Also shouldn't a negative number allow to remove them easily?

> Let's say I accidentally write `/Lotus/Powersuits/Werewalf/Werewolf` with item count 99999. What should I do with the Warframe card in the webui? Well that is up to the user, whatever odd thing they may wanna add. Also shouldn't a negative number allow to remove them easily?

Powersuits isn't type/count-like items. And if so, how do you determine which item to remove and which to keep?

Powersuits isn't type/count-like items. And if so, how do you determine which item to remove and which to keep?
Sainan added the
question
label 2025-09-17 12:00:43 -07:00
Owner

We do have some backend handling for this here, but it's far from exhaustive:

if (quantity != 1) {
    throw new Error(`unexpected acquisition quantity of CrewShipWeapon: got ${quantity}, expected 1`);
}
We do have _some_ backend handling for this here, but it's far from exhaustive: ```js if (quantity != 1) { throw new Error(`unexpected acquisition quantity of CrewShipWeapon: got ${quantity}, expected 1`); } ```
Sainan removed the
question
label 2025-09-26 04:44:51 -07:00
Sign in to join this conversation.
No description provided.