forked from OpenWF/SpaceNinjaServer
		
	fix: unable to add legendary core (#955)
Related to #952 Reviewed-on: OpenWF/SpaceNinjaServer#955
This commit is contained in:
		
							parent
							
								
									7ee8252d0e
								
							
						
					
					
						commit
						0e7c124d26
					
				@ -415,20 +415,21 @@ export const addItem = async (
 | 
			
		||||
            }
 | 
			
		||||
            break;
 | 
			
		||||
        case "Upgrades": {
 | 
			
		||||
            if (typeName.substr(1).split("/")[2] == "CosmeticEnhancers") {
 | 
			
		||||
                // Needed to add Traumatic Peculiar
 | 
			
		||||
                const changes = [
 | 
			
		||||
                    {
 | 
			
		||||
                        ItemType: typeName,
 | 
			
		||||
                        ItemCount: quantity
 | 
			
		||||
                    }
 | 
			
		||||
                ];
 | 
			
		||||
                addMods(inventory, changes);
 | 
			
		||||
                return {
 | 
			
		||||
                    InventoryChanges: {
 | 
			
		||||
                        RawUpgrades: changes
 | 
			
		||||
                    }
 | 
			
		||||
                };
 | 
			
		||||
            switch (typeName.substr(1).split("/")[2]) {
 | 
			
		||||
                case "Mods": // Legendary Core
 | 
			
		||||
                case "CosmeticEnhancers": // Traumatic Peculiar
 | 
			
		||||
                    const changes = [
 | 
			
		||||
                        {
 | 
			
		||||
                            ItemType: typeName,
 | 
			
		||||
                            ItemCount: quantity
 | 
			
		||||
                        }
 | 
			
		||||
                    ];
 | 
			
		||||
                    addMods(inventory, changes);
 | 
			
		||||
                    return {
 | 
			
		||||
                        InventoryChanges: {
 | 
			
		||||
                            RawUpgrades: changes
 | 
			
		||||
                        }
 | 
			
		||||
                    };
 | 
			
		||||
            }
 | 
			
		||||
            break;
 | 
			
		||||
        }
 | 
			
		||||
 | 
			
		||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user