Skip to content
This repository was archived by the owner on Mar 9, 2024. It is now read-only.

Commit f1ee448

Browse files
authored
Merge pull request #3 from RenEvo/1.9.4
v1.9.4-1.0.0 Version
2 parents c40b431 + 84aa1ea commit f1ee448

File tree

2 files changed

+15
-15
lines changed

2 files changed

+15
-15
lines changed

build.gradle

+3-3
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,14 @@ buildscript {
1414
}
1515
apply plugin: 'net.minecraftforge.gradle.forge'
1616

17-
version = "1.9-1.0.0"
17+
version = "1.9.4-1.0.0"
1818
group= "com.renevo.flowergirls"
1919
archivesBaseName = "flowergirls"
2020

2121
minecraft {
22-
version = "1.9-12.16.1.1896"
22+
version = "1.9.4-12.17.0.1961"
2323
runDir = "run"
24-
mappings = "snapshot_20160312"
24+
mappings = "snapshot_20160518"
2525
}
2626

2727
dependencies {

src/main/java/com/renevo/flowergirls/FlowerGirls.java

+12-12
Original file line numberDiff line numberDiff line change
@@ -12,18 +12,18 @@ public class FlowerGirls {
1212
public static final String MODID = "flowergirls";
1313

1414
public static final Block[] blocks = new Block[]{
15-
Blocks.grass,
16-
Blocks.dirt,
17-
Blocks.sand,
18-
Blocks.gravel,
19-
Blocks.tnt,
20-
Blocks.cactus,
21-
Blocks.clay,
22-
Blocks.pumpkin,
23-
Blocks.melon_block,
24-
Blocks.mycelium,
25-
Blocks.brown_mushroom,
26-
Blocks.red_mushroom
15+
Blocks.GRASS,
16+
Blocks.DIRT,
17+
Blocks.SAND,
18+
Blocks.GRAVEL,
19+
Blocks.TNT,
20+
Blocks.CACTUS,
21+
Blocks.CLAY,
22+
Blocks.PUMPKIN,
23+
Blocks.MELON_BLOCK,
24+
Blocks.MYCELIUM,
25+
Blocks.BROWN_MUSHROOM,
26+
Blocks.RED_MUSHROOM
2727
};
2828

2929
@EventHandler

0 commit comments

Comments
 (0)