diff --git a/commands/interaction/slash/search/maps.js b/commands/interaction/slash/search/maps.js index 21f6756..090abc8 100644 --- a/commands/interaction/slash/search/maps.js +++ b/commands/interaction/slash/search/maps.js @@ -29,7 +29,7 @@ function renderPlaceCard(context, place) { if (place.ratings?.score) { let ratingString = ""; - ratingString += icon("maps_star_half").repeat(Math.floor(place.ratings.score)) + ratingString += icon("maps_star").repeat(Math.floor(place.ratings.score)) if (place.ratings.score < 5) { if ((place.ratings.score - Math.floor(place.ratings.score)) >= 0.5) ratingString += icon("maps_star_half") diff --git a/commands/message/search/maps.js b/commands/message/search/maps.js index 98b1c68..79c445e 100644 --- a/commands/message/search/maps.js +++ b/commands/message/search/maps.js @@ -29,7 +29,7 @@ function renderPlaceCard(context, place) { if (place.ratings?.score) { let ratingString = ""; - ratingString += icon("maps_star_half").repeat(Math.floor(place.ratings.score)) + ratingString += icon("maps_star").repeat(Math.floor(place.ratings.score)) if (place.ratings.score < 5) { if ((place.ratings.score - Math.floor(place.ratings.score)) >= 0.5) ratingString += icon("maps_star_half")