Chroma mission can not finish #3052

Closed
opened 2025-11-19 03:19:42 -08:00 by yhhkevin · 1 comment

i change:
/src/branch/main/src/services/questService.ts[612]

case "/Lotus/Types/Recipes/WarframeRecipes/ChromaBlueprint": {

  | await addItems(inventory, [
  | {
  | ItemType: "/Lotus/Types/Recipes/WarframeRecipes/ChromaBeaconABlueprint",
  | ItemCount: -1
  | },
  | {
  | ItemType: "/Lotus/Types/Recipes/WarframeRecipes/ChromaBeaconBBlueprint",
  | ItemCount: -1
  | },
  | {
  | ItemType: "/Lotus/Types/Recipes/WarframeRecipes/ChromaBeaconCBlueprint",
  | ItemCount: -1
  | }
  | ]);

as

case "/Lotus/Types/Recipes/WarframeRecipes/ChromaBlueprint": {

  | await addItems(inventory, [
  | {
  | ItemType: "/Lotus/Types/Recipes/WarframeRecipes/ChromaBeaconABlueprint",
  | ItemCount: 0
  | },
  | {
  | ItemType: "/Lotus/Types/Recipes/WarframeRecipes/ChromaBeaconBBlueprint",
  | ItemCount: 0
  | },
  | {
  | ItemType: "/Lotus/Types/Recipes/WarframeRecipes/ChromaBeaconCComponent",
  | ItemCount: -1
  | }
  | ]);
 
and it can be finish

i change: /src/branch/main/src/services/questService.ts[612] case "/Lotus/Types/Recipes/WarframeRecipes/ChromaBlueprint": { --   | await addItems(inventory, [   | {   | ItemType: "/Lotus/Types/Recipes/WarframeRecipes/ChromaBeaconABlueprint",   | ItemCount: -1   | },   | {   | ItemType: "/Lotus/Types/Recipes/WarframeRecipes/ChromaBeaconBBlueprint",   | ItemCount: -1   | },   | {   | ItemType: "/Lotus/Types/Recipes/WarframeRecipes/ChromaBeaconCBlueprint",   | ItemCount: -1   | }   | ]); as case "/Lotus/Types/Recipes/WarframeRecipes/ChromaBlueprint": { --   | await addItems(inventory, [   | {   | ItemType: "/Lotus/Types/Recipes/WarframeRecipes/ChromaBeaconABlueprint",   | ItemCount: 0   | },   | {   | ItemType: "/Lotus/Types/Recipes/WarframeRecipes/ChromaBeaconBBlueprint",   | ItemCount: 0   | },   | {   | ItemType: "/Lotus/Types/Recipes/WarframeRecipes/ChromaBeaconCComponent",   | ItemCount: -1   | }   | ]);   and it can be finish
Sainan added the bug label 2025-11-19 03:21:04 -08:00
Owner

@AMelonInsideLemon Maybe take a look here why A & B components cannot be removed.

@AMelonInsideLemon Maybe take a look here why A & B components cannot be removed.
Sainan added the pr'd for label 2025-11-20 10:44:29 -08:00
Sign in to join this conversation.