Skip to content

Commit

Permalink
fix #9, fix #8
Browse files Browse the repository at this point in the history
  • Loading branch information
Draylar committed Aug 10, 2020
1 parent d94389d commit c1679d9
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 3 deletions.
7 changes: 5 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,14 +1,17 @@
# Done to increase the memory available to gradle.
org.gradle.jvmargs=-Xmx1G

# Fabric Properties
# check these on https://fabricmc.net/use
minecraft_version=1.16.1
yarn_mappings=1.16.1+build.21
loader_version=0.9.0+build.204

# Mod Properties
mod_version=1.0.2-beta
mod_version=1.0.3-beta
maven_group=draylar
archives_base_name=into-the-omega

# Dependencies
# currently not on the main fabric site, check on the maven: https://maven.fabricmc.net/net/fabricmc/fabric-api/fabric-api
fabric_version=0.16.0+build.384-1.16.1
fabric_version=0.17.0+build.386-1.16.1
3 changes: 2 additions & 1 deletion src/main/java/draylar/intotheomega/registry/OmegaBlocks.java
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@ public class OmegaBlocks {
new OmegaCrystalOreBlock(
FabricBlockSettings
.of(Material.STONE)
.breakByTool(FabricToolTags.PICKAXES)
.requiresTool()
.breakByTool(FabricToolTags.PICKAXES, 3)
.strength(10.0F, 9.0F)
),
new Item.Settings()
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"type": "minecraft:block",
"pools": [
{
"rolls": 1,
"entries": [
{
"type": "minecraft:item",
"name": "intotheomega:conquest_forge"
}
],
"conditions": [
{
"condition": "minecraft:survives_explosion"
}
]
}
]
}

0 comments on commit c1679d9

Please # to comment.