Skip to content

Commit

Permalink
Increase spawnChance percentage decimal display
Browse files Browse the repository at this point in the history
  • Loading branch information
connorhsm committed Nov 3, 2024
1 parent 5409fbb commit 6ac1c55
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/ObjectInspector.vue
Original file line number Diff line number Diff line change
Expand Up @@ -333,7 +333,7 @@ export default {
const biomeTitle = (biome) => {
const biomeData = object.value?.data?.biomes.find((biomeData) => biomeData.id == biome.id);
return `${biome.name} (${object.value.toPercent(biomeData.spawnChance, 2)}%)`;
return `${biome.name} (${object.value.toPercent(biomeData.spawnChance, 3)}%)`;
};
const soundPath = (id, extension) => {
Expand Down

0 comments on commit 6ac1c55

Please sign in to comment.