-
Notifications
You must be signed in to change notification settings - Fork 150
Naming Dimensions in JEI
ALongStringOfNumbers edited this page Jun 16, 2021
·
2 revisions
Dimensions can have optionally supplied names, so that the Ore Generation Page in JEI will insert these dimension names after the dimension number listing in the list of spawnable dimensions on the Ore Generation Page. This is done through the dimensions.json
file located in the root of the Gregtech config file.
This file will generate itself if it is missing when loading into the world, and will default to adding names for the three Vanilla dimensions, Overworld, Nether, and End.
The structure of the dimensions.json file is very simple, and is as follows
{
"dimID": 0,
"dimName": "Overworld"
}
In this structure is:
-
dimID
is the dimension ID in numerical form. This can be obtained by loading the game and running the command/forge dimensions
if you are unsure of the number. -
dimName
is the String name that you want to apply to the dimension in the JEI Ore Generation Page
To add more entries, simply add a comma after the first entry and add the additional entries. The final entry should not be followed by a comma.