Skip to content

Commit 9b28e29

Browse files
JorchCortezCopilot
andauthored
Update src/Components/AchieveTabs/Crops.tsx
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
1 parent 76ff503 commit 9b28e29

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/Components/AchieveTabs/Crops.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ const Crops= (cropsShipped : CropsShippedWrapperType) => {
2121
<span className="a-title"><p>Ship 15 of the following crops to get the 'Polyculture' achievement</p></span>
2222
{cropsShipped.cropsShipped.poly_crops.map((crop, i) =><a href={`https://stardewvalleywiki.com/${crop.image}`} target="blank" key={i}> <img key={i} src={`https://stardew-tracker.s3.amazonaws.com/Crops/${crop.image}.png`} alt={crop.name} className={ (crop.shipped !== undefined) ? ((crop.shipped >= 15) ? "done" : "known" ): "" } title={(crop.shipped !== undefined) ? (crop.shipped >= 15) ? `You have shipped ${crop.name} ${crop.shipped} times` : `You have to ship ${ 15 - crop.shipped} more ${crop.name} ` : `You haven't shipped ${crop.name}`} ></img></a>)}
2323

24-
<span className="a-title"><p>This crops are not counted for the 'Polyculture' achievement</p></span>
24+
<span className="a-title"><p>These crops are not counted for the 'Polyculture' achievement</p></span>
2525
{cropsShipped.cropsShipped.mono_extras.map((crop, i) =><a href={`https://stardewvalleywiki.com/${crop.image}`} target="blank" key={i}> <img key={i} src={`https://stardew-tracker.s3.amazonaws.com/Crops/${crop.image}.png`} alt={crop.name} className={ (crop.shipped !== undefined) ? ((crop.shipped > 0) ? "done" : "known" ): "" } title={(crop.shipped !== undefined) ? `You have shipped ${crop.name} ${crop.shipped} times` : `You haven't shipped ${crop.name}`} ></img></a>)}
2626
</div>
2727
);

0 commit comments

Comments
 (0)