Begin updating to 1.19 and rename mod
This commit is contained in:
parent
26d6cd4d5e
commit
f3e94c68a7
52 changed files with 196 additions and 414 deletions
17
src/main/java/dev/zontreck/otemod/integrations/JEI.java
Normal file
17
src/main/java/dev/zontreck/otemod/integrations/JEI.java
Normal file
|
@ -0,0 +1,17 @@
|
|||
package dev.zontreck.otemod.integrations;
|
||||
|
||||
import dev.zontreck.otemod.OTEMod;
|
||||
import mezz.jei.api.IModPlugin;
|
||||
import mezz.jei.api.JeiPlugin;
|
||||
import net.minecraft.resources.ResourceLocation;
|
||||
|
||||
@JeiPlugin
|
||||
public class JEI implements IModPlugin
|
||||
{
|
||||
|
||||
@Override
|
||||
public ResourceLocation getPluginUid() {
|
||||
return new ResourceLocation(OTEMod.MOD_ID, "jei_plugin");
|
||||
}
|
||||
|
||||
}
|
Reference in a new issue