Skip to content

Commit 9253c09

Browse files
committed
0.3 woop woop!
1 parent 1f37863 commit 9253c09

11 files changed

Lines changed: 314 additions & 253 deletions

File tree

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,14 @@ Minecraft Diverge is a Minecraft Alpha v1.1.2_01 mod that takes the game towards
66

77
For guidance with installing this mod, check out the [INSTALLATION](INSTALLATION.md) document. If you want to create mods for Diverge, check out the [MODDING](MODDING.md) guide.
88

9-
This is the Github repository for Minecraft Diverge, where users can submit issues and download new versions. The source code for Minecraft Diverge is partially available in the form of patch files from RetroMCP-Java 1.0.
9+
This is the Github repository for Minecraft Diverge, where users can submit issues and download new versions. The source code for Minecraft Diverge is partially available in the form of patch files from RetroMCP-Java.
1010

1111
*Why don't you check out Minecraft Diverge's sister project, [Authentic Adventure](https://github.com/BlueStaggo/AuthenticAdventure)?*
1212

1313
## Features
1414
- Stamina based sprinting
1515
- Extended world height
16-
- Six biomes with unique types of wood and stone
16+
- Six biomes with unique wood and stone types
1717
- Rubies and sapphires, gems with magical properties
1818
- Charms and trinkets that enhance your abilities
1919
- Plenty of new blocks to build with
@@ -24,7 +24,7 @@ This is the Github repository for Minecraft Diverge, where users can submit issu
2424
- Plenty of optimisations
2525

2626
## Trailer (Youtube)
27-
[![](https://img.youtube.com/vi/iyZVbCfVZU4/0.jpg)](https://youtu.be/iyZVbCfVZU4)
27+
[![](https://img.youtube.com/vi/TFNFc11QhAw/0.jpg)](https://youtu.be/TFNFc11QhAw)
2828

2929
## Screenshots
3030
![](img/screenshot0.png)

example_mod/net/minecraft/src/ExampleMod.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,8 +78,8 @@ public void load() throws Exception {
7878
// on every tick of the world.
7979
@Override
8080
public void onWorldTick(World world) {
81-
// Drop cheese in singleplayer worlds in 1 in 1000 ticks.
82-
int cheeseInterval = 1000;
81+
// Drop cheese in singleplayer worlds in 1 in 100 ticks.
82+
int cheeseInterval = 100;
8383
if (ModLoader.isClient() && world.canDoClientAction() && world.rand.nextInt(cheeseInterval) == 0) {
8484
for (EntityPlayer player : (List<EntityPlayer>)world.playerEntities) {
8585
EntityItem item = new EntityItem(world, player.posX, player.posY + 10, player.posZ, new ItemStack(cheese));

img/doc/modding/modicon.png

-904 Bytes
Loading

img/screenshot0.png

742 KB
Loading

img/screenshot1.png

1.05 MB
Loading

img/screenshot2.png

977 KB
Loading

img/screenshot3.png

-45.3 KB
Loading

img/screenshot4.png

156 KB
Loading

img/screenshot5.png

622 KB
Loading

mcdiverge-logo.png

38.1 KB
Loading

0 commit comments

Comments
 (0)