Add threshold to the mod dimensions file

This commit is contained in:
Zontreck 2024-02-18 07:47:02 -07:00
parent 74ec5fcbc5
commit 77b9e1b22e

View file

@ -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();
}
} }