Chroma mission can not finish #3052
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
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
@AMelonInsideLemon Maybe take a look here why A & B components cannot be removed.