mirror of
https://github.com/Eaglercraft-Archive/Eaglercraftx-1.8.8-src.git
synced 2025-06-27 18:38:14 -05:00
12 lines
279 B
Java
12 lines
279 B
Java
package net.optifine.config;
|
|
|
|
import net.minecraft.item.Item;
|
|
import net.minecraft.util.ResourceLocation;
|
|
|
|
public class ItemLocator implements IObjectLocator {
|
|
public Object getObject(ResourceLocation loc) {
|
|
Item item = Item.getByNameOrId(loc.toString());
|
|
return item;
|
|
}
|
|
}
|