Skip to content

Commit b7ca4f8

Browse files
authored
Update create-a-minecraft-mod-with-java.mdx
1 parent 0ad6d1f commit b7ca4f8

1 file changed

Lines changed: 6 additions & 4 deletions

File tree

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

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ tags:
2525

2626
This project tutorial comes from that curiosity. Instead of just playing Minecraft, we are going to extend it by writing our own Java code and create a working Minecraft mod. If you have ever wanted to understand how mods work under the hood or take your first step into game modding, this is the place to start.
2727

28-
**Mods** (short for modifications) are a way of writing code to alter graphics or gameplay of a game. In 2026, there are 200,000+ mods for Minecraft across different mod hosting sites.
28+
**Mods** (short for modifications) are a way of writing code to alter graphics or gameplay of a game. In 2026, there are 200,000+ mods for Minecraft across different mod hosting sites. It's now the most modded game of all-time above Skyrim.
2929

3030
We are going to build a mod that creates a **custom item** in Minecraft:
3131

@@ -34,11 +34,13 @@ We are going to build a mod that creates a **custom item** in Minecraft:
3434
Your browser does not support the video tag.
3535
</video>
3636

37-
### But first... What is Forge MDK ?
37+
### But first... What is Forge MDK?
3838

39-
This project tutorial requires a setup of the Forge MDK’s project structure and parchment. Minecraft was not built to be changed easily. The **Forge MDK** (MDK stands for Mod Developer Kit) acts like a _translator and helper_ that lets our code talk to Minecraft safely.
39+
This project tutorial requires a setup of the Forge MDK’s project structure and parchment.
4040

41-
It’s the official starter kit you use when you want to build a Minecraft mod using the Forge mod loader—especially in Java. Think of the it as a pre-configured project template for modding Minecraft.
41+
The **Forge MDK** is the official starter kit you use when you want to build a Minecraft mod using the Forge mod loader—especially in Java. Think of the it as a pre-configured project template for modding Minecraft. The name MDK, which stands for Mod Development Kit, came from the SDK, which came from Software Developer Kit (i.e. Android SDK, iOS SDK, Unity SDK, Unreal SDK, Windows SDK, PlayStation SDK).
42+
43+
Minecraft was not built to be changed easily. The Forge MDK acts like a translator and helper that lets our code talk to Minecraft safely.
4244

4345
Without Forge, Minecraft wouldn't know:
4446

0 commit comments

Comments
 (0)