Skip to content

Commit

Permalink
6.9.3.81
Browse files Browse the repository at this point in the history
Signed-off-by: AlasDiablo <[email protected]>
  • Loading branch information
AlasDiablo committed Feb 5, 2022
1 parent dc44457 commit a1815bf
Show file tree
Hide file tree
Showing 4 changed files with 36 additions and 7 deletions.
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ apply plugin: 'org.spongepowered.mixin'
// //
// ***************************************** //
def majorVersion = 9
def minorVersion = 2
def buildVersion = 80
def minorVersion = 3
def buildVersion = 81
def isExperimental = false
version = "${majorVersion}.${minorVersion}.${buildVersion}"
if (isExperimental) {
Expand Down
30 changes: 29 additions & 1 deletion changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,9 @@

<details><summary><b>1.18.1</b></summary>

+ [6.9.2.79](#68278)
+ [6.9.3.81](#68381)
+ [6.9.2.80](#69280)
+ [6.9.2.79](#69279)
+ [6.8.2.78](#68278)
+ [6.7.2.77-experimental](#67277-experimental)

Expand Down Expand Up @@ -113,6 +115,32 @@

</details>

### 6.9.3.81

#### Fix

+ add missing recipes
+ update tag with wrong reference
+ add missing loot table

#### Add

+ add Create compatibility
+ add block of raw materials

#### Other

+ Rename and reorganise creative tab

#### Dependencies

+ update Forge (39.0.64)
+ update Catalog (1.6.0)
+ update JEI (9.2.1.69)
+ update JER (0.13.1.138)
+ add Flywheel (0.6.0)
+ add Create (v0.4d)

### 6.9.2.80

+ Recompile jar with missing data
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -96,14 +96,16 @@ protected void addTags() {
DEEPSLATE_TINY_BAUXITE_ORE, DEEPSLATE_TINY_LEAD_ORE, DEEPSLATE_TINY_NICKEL_ORE, DEEPSLATE_TINY_SILVER_ORE, DEEPSLATE_TINY_TIN_ORE,
DEEPSLATE_TINY_URANIUM_ORE, NETHER_COAL_ORE, NETHER_COPPER_ORE, NETHER_DIAMOND_ORE, NETHER_EMERALD_ORE, NETHER_IRON_ORE, NETHER_LAPIS_ORE,
NETHER_REDSTONE_ORE, NETHER_BAUXITE_ORE, NETHER_LEAD_ORE, NETHER_NICKEL_ORE, NETHER_SILVER_ORE, NETHER_TIN_ORE, NETHER_URANIUM_ORE,
ALUMINIUM_BLOCK, LEAD_BLOCK, NICKEL_BLOCK, SILVER_BLOCK, TIN_BLOCK, URANIUM_BLOCK
ALUMINIUM_BLOCK, LEAD_BLOCK, NICKEL_BLOCK, SILVER_BLOCK, TIN_BLOCK, URANIUM_BLOCK, RAW_ALUMINIUM_BLOCK, RAW_LEAD_BLOCK, RAW_NICKEL_BLOCK,
RAW_SILVER_BLOCK, RAW_TIN_BLOCK, RAW_URANIUM_BLOCK
);

this.tag(BlockTags.NEEDS_STONE_TOOL)
.add(BAUXITE_ORE, LEAD_ORE, TIN_ORE, DEEPSLATE_BAUXITE_ORE, DEEPSLATE_LEAD_ORE, DEEPSLATE_TIN_ORE, TINY_COPPER_ORE, TINY_IRON_ORE,
DEEPSLATE_TINY_COPPER_ORE, DEEPSLATE_TINY_IRON_ORE, TINY_BAUXITE_ORE, TINY_LEAD_ORE, TINY_TIN_ORE, DEEPSLATE_TINY_BAUXITE_ORE,
DEEPSLATE_TINY_LEAD_ORE, DEEPSLATE_TINY_TIN_ORE, TINY_LAPIS_ORE, DEEPSLATE_TINY_LAPIS_ORE, ALUMINIUM_BLOCK, LEAD_BLOCK, NICKEL_BLOCK,
SILVER_BLOCK, TIN_BLOCK, URANIUM_BLOCK
SILVER_BLOCK, TIN_BLOCK, URANIUM_BLOCK, RAW_ALUMINIUM_BLOCK, RAW_LEAD_BLOCK, RAW_NICKEL_BLOCK, RAW_SILVER_BLOCK, RAW_TIN_BLOCK,
RAW_URANIUM_BLOCK
);

this.tag(BlockTags.NEEDS_IRON_TOOL)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -153,8 +153,7 @@ public class FoundationBlocks {
private static @NotNull Block createStorageBlock(String name, MaterialColor color) {
var block = new Block(BlockBehaviour.Properties.of(
Material.METAL, color
).requiresCorrectToolForDrops().strength(3.0F, 6.0F).sound(SoundType.METAL)
);
).requiresCorrectToolForDrops().strength(3.0F, 6.0F).sound(SoundType.METAL));
block.setRegistryName(name);
return block;
}
Expand Down

0 comments on commit a1815bf

Please sign in to comment.