Update dropper selection display: include client ID in dropdown options for better identification
This commit is contained in:
@@ -182,7 +182,7 @@ function InventoryGrid() {
|
|||||||
>
|
>
|
||||||
{droppers.map((d) => (
|
{droppers.map((d) => (
|
||||||
<option key={d.name} value={d.name}>
|
<option key={d.name} value={d.name}>
|
||||||
{d.name.replace(/^minecraft:/, '')}{d.isDefault ? ' (default)' : ''}
|
{d.name.replace(/^minecraft:/, '')}{d.isDefault ? ' (default)' : d.clientId ? ` (client ${d.clientId})` : ''}
|
||||||
</option>
|
</option>
|
||||||
))}
|
))}
|
||||||
</select>
|
</select>
|
||||||
|
|||||||
Reference in New Issue
Block a user