@@ -109,6 +109,13 @@ public class CraftLegacy {
|
||||
|
||||
MaterialData materialData = new MaterialData(material, (byte) data);
|
||||
|
||||
// First try matching item
|
||||
Item convertedItem = materialToItem.get(materialData);
|
||||
if (convertedItem != null) {
|
||||
return convertedItem;
|
||||
}
|
||||
|
||||
// Fallback to matching block
|
||||
if (material.isBlock()) {
|
||||
// Try exact match first
|
||||
IBlockData converted = materialToData.get(materialData);
|
||||
@@ -123,12 +130,6 @@ public class CraftLegacy {
|
||||
}
|
||||
}
|
||||
|
||||
// Fallback to matching item
|
||||
Item convertedItem = materialToItem.get(materialData);
|
||||
if (convertedItem != null) {
|
||||
return convertedItem;
|
||||
}
|
||||
|
||||
// Return existing item
|
||||
return item;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user