Add threshold to the mod dimensions file
This commit is contained in:
parent
74ec5fcbc5
commit
77b9e1b22e
1 changed files with 5 additions and 0 deletions
|
@ -6,8 +6,13 @@ import net.minecraft.resources.ResourceLocation;
|
||||||
public class ModDimensions
|
public class ModDimensions
|
||||||
{
|
{
|
||||||
public static final ResourceLocation BUILDER = new ResourceLocation(OTEMod.MOD_ID, "builder");
|
public static final ResourceLocation BUILDER = new ResourceLocation(OTEMod.MOD_ID, "builder");
|
||||||
|
public static final ResourceLocation THRESHOLD = new ResourceLocation(OTEMod.MOD_ID, "threshold");
|
||||||
public static String BUILDER_DIM()
|
public static String BUILDER_DIM()
|
||||||
{
|
{
|
||||||
return BUILDER.getNamespace() + ":" + BUILDER.getPath();
|
return BUILDER.getNamespace() + ":" + BUILDER.getPath();
|
||||||
}
|
}
|
||||||
|
public static String THRESHOLD_DIM()
|
||||||
|
{
|
||||||
|
return THRESHOLD.getNamespace() + ":" + THRESHOLD.getPath();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Reference in a new issue