Skip to content

Commit 1134fce

Browse files
authored
Update create-a-minecraft-mod-with-java.mdx
1 parent 47b3795 commit 1134fce

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

projects/create-a-minecraft-mod-with-java/create-a-minecraft-mod-with-java.mdx

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ The Forge MDK provides:
5757
- Folders that tell you where to put your code and images.
5858
- Tools that run Minecraft with your mod installed.
5959
- Readable names for Minecraft code so it is easier to understand.
60-
- Rules so your mod does not break the game or other mods
60+
- Rules so your mod does not break the game or other mods.
6161

6262
This can be very tedious to follow, so I have included the Forge MDK folder with the setup done. Make sure you have all the other prerequisites.
6363

@@ -75,16 +75,14 @@ Download it here: https://www.jetbrains.com/idea/download
7575

7676
The first thing we will do in this tutorial is make sure the folders are able to be accessed easily.
7777

78-
This can be done through going to the three dots on the project, like this:
78+
This can be done through clicking the three dots "⋮" on the project, like this:
7979

8080
<video width="100%" controls>
8181
<source src="https://i.imgur.com/m8fuXuR.mp4" type="video/mp4" />
8282
Your browser does not support the video tag.
8383
</video>
8484

85-
And in "Appearance", ensure the “Flatten Modules”, “Flatten Packages”, and “Compact Middle Packages” are all turned off (unchecked).
86-
87-
If they were on, they would make adding directionaries and files to existing ones harder.
85+
And in "Appearance", ensure “Flatten Modules”, “Flatten Packages”, and “Compact Middle Packages” are all turned off (not checked). If they were on, they would make adding directories and files to existing ones harder.
8886

8987
Right-click the **itemmod** folder under the **codedex** folder (can be accessed through src -> main -> java -> com -> codedex) and press new. We will be creating a new Package. You should see a popup, just add “item” to the end of the line, like so:
9088

0 commit comments

Comments
 (0)