diff --git a/functions/integrations/changingroom.js b/functions/integrations/changingroom.js index cb3ae27..2019c4d 100644 --- a/functions/integrations/changingroom.js +++ b/functions/integrations/changingroom.js @@ -25,9 +25,6 @@ exports.generateNewOutfit = async function( req, res ) { try { - // Internal beta - if( id != 1 ) return res.json( { error: `Sorry the changing room is in private beta for now <3` } ) - // Get request data const { message, signature, signatory } = req.body if( !message || !signatory || !signature ) throw new Error( `Malformed request` ) diff --git a/functions/nft-media/changing-room.js b/functions/nft-media/changing-room.js index 84b6f63..fa7b456 100644 --- a/functions/nft-media/changing-room.js +++ b/functions/nft-media/changing-room.js @@ -14,10 +14,10 @@ async function generateNewOutfitFromId( id, network='mainnet' ) { // Changing room variables // /////////////////////////////*/ // Set the entropy level. 255 would mean 0 can become 255 and -255 - let colorEntropy = 20 + let colorEntropy = 10 const newOutfitAllowedInterval = 1000 * 60 * 60 * 24 * 30 const specialEditionMultiplier = 1.1 - const entropyMultiplier = 1.05 + const entropyMultiplier = 1.1 // Retreive old Rocketeer data const rocketeer = await db.collection( `${ network }Rocketeers` ).doc( id ).get().then( dataFromSnap )