forked from matthewperiut/factory_blocks
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
11 changed files
with
121 additions
and
119 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,19 @@ | ||
# Done to increase the memory available to gradle. | ||
org.gradle.jvmargs=-Xmx1G | ||
org.gradle.jvmargs=-Xmx3G | ||
org.gradle.daemon=false | ||
|
||
# Fabric Properties | ||
# check these on https://fabricmc.net/develop | ||
minecraft_version=1.19.3 | ||
yarn_mappings=1.19.3+build.5 | ||
loader_version=0.14.12 | ||
# check these on https://fabricmc.net/develop | ||
minecraft_version=1.20.1 | ||
yarn_mappings=1.20.1+build.9 | ||
loader_version=0.14.21 | ||
fabric_version=0.88.1+1.20.1 | ||
|
||
# Mod Properties | ||
mod_version = 1.0.1 | ||
maven_group = com.slaincow | ||
archives_base_name = factory-blocks-mod | ||
mod_version=1.1.0 | ||
group=com.slaincow | ||
displayname=Factory Blocks | ||
|
||
#Fabric api | ||
fabric_version=0.72.0+1.19.3 | ||
# Depdendencies | ||
chisel_version=1.6+1.20.1 | ||
continuity_version=3.0.0-beta.4+1.20.1 |
Binary file renamed
BIN
+5.45 MB
...chisel-1.4.8+1.19.3+continuity-inside.jar → lib/chisel-1.6+1.20.1.jar
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"version": 1, | ||
"overrides": { | ||
"factory_blocks": { "depends": { } } | ||
} | ||
} |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,8 @@ | ||
pluginManagement { | ||
repositories { | ||
maven { | ||
name = 'Fabric' | ||
url = 'https://maven.fabricmc.net/' | ||
} | ||
mavenCentral() | ||
maven { name 'Fabric'; url 'https://maven.fabricmc.net/' } | ||
gradlePluginPortal() | ||
} | ||
} | ||
rootProject.name = 'factory_blocks' |
5 changes: 4 additions & 1 deletion
5
src/main/java/net/slaincow/factoryblocks/block/BaseFactoryBlock.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,13 @@ | ||
package net.slaincow.factoryblocks.block; | ||
|
||
import net.minecraft.block.Block; | ||
import net.minecraft.block.MapColor; | ||
import net.minecraft.block.enums.Instrument; | ||
|
||
import static net.slaincow.factoryblocks.FactorySound.FACTORY_BLOCKS; | ||
|
||
public class BaseFactoryBlock extends Block { | ||
public BaseFactoryBlock(Settings settings) { | ||
super(settings.strength(2).sounds(FACTORY_BLOCKS)); | ||
super(settings.mapColor(MapColor.IRON_GRAY).instrument(Instrument.IRON_XYLOPHONE).requiresTool().strength(2).sounds(FACTORY_BLOCKS)); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters