Skip to content

Commit a1815bf

Browse files
committed
6.9.3.81
Signed-off-by: AlasDiablo <25723276+AlasDiablo@users.noreply.github.com>
1 parent dc44457 commit a1815bf

File tree

4 files changed

+36
-7
lines changed

4 files changed

+36
-7
lines changed

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ apply plugin: 'org.spongepowered.mixin'
2424
// //
2525
// ***************************************** //
2626
def majorVersion = 9
27-
def minorVersion = 2
28-
def buildVersion = 80
27+
def minorVersion = 3
28+
def buildVersion = 81
2929
def isExperimental = false
3030
version = "${majorVersion}.${minorVersion}.${buildVersion}"
3131
if (isExperimental) {

changelog.md

Lines changed: 29 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,9 @@
44

55
<details><summary><b>1.18.1</b></summary>
66

7-
+ [6.9.2.79](#68278)
7+
+ [6.9.3.81](#68381)
8+
+ [6.9.2.80](#69280)
9+
+ [6.9.2.79](#69279)
810
+ [6.8.2.78](#68278)
911
+ [6.7.2.77-experimental](#67277-experimental)
1012

@@ -113,6 +115,32 @@
113115

114116
</details>
115117

118+
### 6.9.3.81
119+
120+
#### Fix
121+
122+
+ add missing recipes
123+
+ update tag with wrong reference
124+
+ add missing loot table
125+
126+
#### Add
127+
128+
+ add Create compatibility
129+
+ add block of raw materials
130+
131+
#### Other
132+
133+
+ Rename and reorganise creative tab
134+
135+
#### Dependencies
136+
137+
+ update Forge (39.0.64)
138+
+ update Catalog (1.6.0)
139+
+ update JEI (9.2.1.69)
140+
+ update JER (0.13.1.138)
141+
+ add Flywheel (0.6.0)
142+
+ add Create (v0.4d)
143+
116144
### 6.9.2.80
117145

118146
+ Recompile jar with missing data

src/main/java/fr/alasdiablo/janoeo/foundation/data/tag/FoundationBlockTagsProvider.java

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,14 +96,16 @@ protected void addTags() {
9696
DEEPSLATE_TINY_BAUXITE_ORE, DEEPSLATE_TINY_LEAD_ORE, DEEPSLATE_TINY_NICKEL_ORE, DEEPSLATE_TINY_SILVER_ORE, DEEPSLATE_TINY_TIN_ORE,
9797
DEEPSLATE_TINY_URANIUM_ORE, NETHER_COAL_ORE, NETHER_COPPER_ORE, NETHER_DIAMOND_ORE, NETHER_EMERALD_ORE, NETHER_IRON_ORE, NETHER_LAPIS_ORE,
9898
NETHER_REDSTONE_ORE, NETHER_BAUXITE_ORE, NETHER_LEAD_ORE, NETHER_NICKEL_ORE, NETHER_SILVER_ORE, NETHER_TIN_ORE, NETHER_URANIUM_ORE,
99-
ALUMINIUM_BLOCK, LEAD_BLOCK, NICKEL_BLOCK, SILVER_BLOCK, TIN_BLOCK, URANIUM_BLOCK
99+
ALUMINIUM_BLOCK, LEAD_BLOCK, NICKEL_BLOCK, SILVER_BLOCK, TIN_BLOCK, URANIUM_BLOCK, RAW_ALUMINIUM_BLOCK, RAW_LEAD_BLOCK, RAW_NICKEL_BLOCK,
100+
RAW_SILVER_BLOCK, RAW_TIN_BLOCK, RAW_URANIUM_BLOCK
100101
);
101102

102103
this.tag(BlockTags.NEEDS_STONE_TOOL)
103104
.add(BAUXITE_ORE, LEAD_ORE, TIN_ORE, DEEPSLATE_BAUXITE_ORE, DEEPSLATE_LEAD_ORE, DEEPSLATE_TIN_ORE, TINY_COPPER_ORE, TINY_IRON_ORE,
104105
DEEPSLATE_TINY_COPPER_ORE, DEEPSLATE_TINY_IRON_ORE, TINY_BAUXITE_ORE, TINY_LEAD_ORE, TINY_TIN_ORE, DEEPSLATE_TINY_BAUXITE_ORE,
105106
DEEPSLATE_TINY_LEAD_ORE, DEEPSLATE_TINY_TIN_ORE, TINY_LAPIS_ORE, DEEPSLATE_TINY_LAPIS_ORE, ALUMINIUM_BLOCK, LEAD_BLOCK, NICKEL_BLOCK,
106-
SILVER_BLOCK, TIN_BLOCK, URANIUM_BLOCK
107+
SILVER_BLOCK, TIN_BLOCK, URANIUM_BLOCK, RAW_ALUMINIUM_BLOCK, RAW_LEAD_BLOCK, RAW_NICKEL_BLOCK, RAW_SILVER_BLOCK, RAW_TIN_BLOCK,
108+
RAW_URANIUM_BLOCK
107109
);
108110

109111
this.tag(BlockTags.NEEDS_IRON_TOOL)

src/main/java/fr/alasdiablo/janoeo/foundation/init/FoundationBlocks.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -153,8 +153,7 @@ public class FoundationBlocks {
153153
private static @NotNull Block createStorageBlock(String name, MaterialColor color) {
154154
var block = new Block(BlockBehaviour.Properties.of(
155155
Material.METAL, color
156-
).requiresCorrectToolForDrops().strength(3.0F, 6.0F).sound(SoundType.METAL)
157-
);
156+
).requiresCorrectToolForDrops().strength(3.0F, 6.0F).sound(SoundType.METAL));
158157
block.setRegistryName(name);
159158
return block;
160159
}

0 commit comments

Comments
 (0)