Genesis bug

This commit is contained in:
Mentor Palokaj 2021-10-30 16:33:49 +02:00
parent 59db40a3c2
commit f6ca785f7d
3 changed files with 11791 additions and 2 deletions

File diff suppressed because it is too large Load Diff

View File

@ -89,7 +89,7 @@ async function generateRocketeer( id, network='mainnet' ) {
// Special editions // Special editions
const edition = { "trait_type": "edition", value: "regular" } const edition = { "trait_type": "edition", value: "regular" }
if( id < 50 ) edition.value = 'genesis' if( id <= 50 ) edition.value = 'genesis'
if( id % 42 === 0 ) edition.value = 'hitchhiker' if( id % 42 === 0 ) edition.value = 'hitchhiker'
rocketeer.attributes.push( edition ) rocketeer.attributes.push( edition )