You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The file modules/default/BiomesOPlenty checks whether BoP is installed with the following line 15:
<IfModInstalled name="BiomesOPlenty">
This is incorrect, and the BoP module will not be available or functional in-game. This is because Mod IDs are always lowercase, but CustomOreGen is using case-sensitive checking for determining if the mod is loaded. Thus, it determines that no mod with the ID "BiomesOPlenty" is loaded.
The correct line 15 should be this:
<IfModInstalled name="biomesoplenty">
The text was updated successfully, but these errors were encountered:
The file modules/default/BiomesOPlenty checks whether BoP is installed with the following line 15:
This is incorrect, and the BoP module will not be available or functional in-game. This is because Mod IDs are always lowercase, but CustomOreGen is using case-sensitive checking for determining if the mod is loaded. Thus, it determines that no mod with the ID "BiomesOPlenty" is loaded.
The correct line 15 should be this:
The text was updated successfully, but these errors were encountered: