Open dotSp0T opened 3 years ago
Add Utility function and replace all usages of new ResourceLocation(Main.MOD_ID, <mykey>) with it, to prevent accidental usage of new ResourceLocation(<mykey>), which will create a minecraft resourcelocation instead..
new ResourceLocation(Main.MOD_ID, <mykey>)
new ResourceLocation(<mykey>)
Add Utility function and replace all usages of
new ResourceLocation(Main.MOD_ID, <mykey>)
with it, to prevent accidental usage ofnew ResourceLocation(<mykey>)
, which will create a minecraft resourcelocation instead..