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) => (
|
||||
<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>
|
||||
))}
|
||||
</select>
|
||||
|
||||
Reference in New Issue
Block a user