Update dropper selection display: include client ID in dropdown options for better identification

This commit is contained in:
MayaTheShy
2026-03-21 20:37:20 -04:00
parent a2f7df448c
commit b454fd5516

View File

@@ -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>