This commit is contained in:
		
						commit
						7c4b8a0f57
					
				|  | @ -326,7 +326,7 @@ async function handleBettingStreakBadgeAward( | |||
|   // TODO: check if already awarded 50th streak as well
 | ||||
|   if (newBettingStreak === 1 && alreadyHasBadgeForFirstStreak) return | ||||
| 
 | ||||
|   if (newBettingStreak in streakerBadgeRarityThresholds) { | ||||
|   if (streakerBadgeRarityThresholds.includes(newBettingStreak)) { | ||||
|     const badge = { | ||||
|       type: 'STREAKER', | ||||
|       name: 'Streaker', | ||||
|  |  | |||
|  | @ -50,7 +50,7 @@ async function handleMarketCreatorBadgeAward(contractCreator: User) { | |||
|       .where('creatorId', '==', contractCreator.id) | ||||
|       .where('resolution', '!=', 'CANCEL') | ||||
|   ) | ||||
|   if (contracts.length in marketCreatorBadgeRarityThresholds) { | ||||
|   if (marketCreatorBadgeRarityThresholds.includes(contracts.length)) { | ||||
|     const badge = { | ||||
|       type: 'MARKET_CREATOR', | ||||
|       name: 'Market Creator', | ||||
|  |  | |||
		Loading…
	
		Reference in New Issue
	
	Block a user