From 8d4936407a95f27f3a0f6a3769c6fcc822c280ae Mon Sep 17 00:00:00 2001 From: Mentor Palokaj Date: Sat, 11 Dec 2021 21:28:55 +0100 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8=20special=20edition=20livestream=20de?= =?UTF-8?q?ployment=20with=20parameters=20according=20to=20POAP=20vote=20/?= =?UTF-8?q?poll/222?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- functions/integrations/changingroom.js | 3 --- functions/nft-media/changing-room.js | 4 ++-- 2 files changed, 2 insertions(+), 5 deletions(-) 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 )