Skip to content

Commit 232e73a

Browse files
authored
Update create-a-minecraft-mod-with-java.mdx
1 parent e35dd0c commit 232e73a

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
@@ -23,11 +23,11 @@ tags:
2323

2424
[Minecraft](https://en.wikipedia.org/wiki/Minecraft) was one of the first games that made me curious about how software actually works. I grew up playing it as a sandbox where creativity and logic overlapped.
2525

26-
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.
26+
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 the first step into game modding, this is the place to start.
2727

2828
**Mods** (short for modifications) are a way of writing code to alter graphics or gameplay of a game.
2929

30-
There are now 200,000+ Minecraft mods across mod hosting sites, making it the most modded game of all-time (by downloads).
30+
There are 200,000+ Minecraft mods on mod hosting sites. It's the most modded game of all-time (by downloads).
3131

3232
We are going to build a mod that creates a **custom item** in Minecraft:
3333

@@ -44,9 +44,7 @@ The **Forge MDK** is the official starter kit you use when you want to build a M
4444

4545
The name MDK, which stands for Mod Development Kit, came from the SDK, which stands for Software Developer Kit (i.e. Android SDK, iOS SDK, Unity SDK, Unreal SDK, Windows SDK, PlayStation SDK).
4646

47-
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.
48-
49-
Without Forge, Minecraft wouldn't know:
47+
Minecraft was not built to be changed easily. The Forge MDK is like a translator that lets our code talk to Minecraft safely. Without Forge, Minecraft wouldn't know:
5048

5149
- What your mod is.
5250
- When to load it.

0 commit comments

Comments
 (0)