Skip to content

Commit

Permalink
1.5.0
Browse files Browse the repository at this point in the history
updated to 1.17-pre1
blocks are now in the mineable/pickaxe tag where appropriate
changed resistor mode ONEPOINTFIVE to ONE_POINT_FIVE
bumped version number to 1.5.0
  • Loading branch information
Shnupbups committed May 28, 2021
1 parent bd138ae commit 99912f5
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 13 deletions.
10 changes: 5 additions & 5 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,23 +3,23 @@ org.gradle.jvmargs=-Xmx1G

# Fabric Properties
# check these on https://modmuss50.me/fabric.html
minecraft_version=21w20a
yarn_mappings=19
minecraft_version=1.17-pre1
yarn_mappings=4
tiny_version=2
loader_version=0.11.3

# Mod Properties
mod_version = 1.4.1
mod_version = 1.5.0
maven_group = com.shnupbups
mod_name = redstone-bits
version_meta = fabric-mc1.17

# Dependencies
# check on https://modmuss50.me/fabric.html
fapi_version=0.34.7+1.17
fapi_version=0.34.8+1.17

# check on github at https://github.com/Shnupbups/oxidizelib/releases
oxidizelib_version=62acd6c3a0
oxidizelib_version=1.0.0b

# Other Stuff
# check on maven at https://maven.shedaniel.me/me/shedaniel/RoughlyEnoughItems/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,13 +32,8 @@
import java.util.Random;

public class CheckerBlock extends BlockWithEntity implements AdvancedRedstoneConnector {
public static final DirectionProperty FACING;
public static final BooleanProperty POWERED;

static {
FACING = Properties.FACING;
POWERED = Properties.POWERED;
}
public static final DirectionProperty FACING = Properties.FACING;
public static final BooleanProperty POWERED = Properties.POWERED;

public CheckerBlock(Settings settings) {
super(settings);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import net.minecraft.util.StringIdentifiable;

public enum ResistorMode implements StringIdentifiable {
ONEPOINTFIVE(1.5f),
ONE_POINT_FIVE(1.5f),
HALVE(2),
THIRD(3);

Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"replace": false,
"values": [
"redstonebits:checker",
"redstonebits:breaker",
"redstonebits:placer",
"#redstonebits:copper_buttons",
"#redstonebits:copper_pressure_plates"
]
}

0 comments on commit 99912f5

Please sign in to comment.