Skip to content

Commit

Permalink
fix battery energy cap
Browse files Browse the repository at this point in the history
  • Loading branch information
LemmaEOF committed Jun 17, 2019
1 parent f43a15b commit 64cb297
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ sourceCompatibility = 1.8
targetCompatibility = 1.8

archivesBaseName = "vivatech"
version = "1.0.0-alpha.7+1.14.2"
version = "1.0.0-alpha.8+1.14.2"

repositories {
maven {
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/vivatech/item/BatteryItem.java
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
public class BatteryItem extends Item implements EnergyAttributeProviderItem {
public static final Identifier ID = new Identifier(Vivatech.MODID, "battery");

private static final int MAX_ENERGY = 5_000;
private static final int MAX_ENERGY = 500;

public BatteryItem() {
super(Vivatech.ITEM_SETTINGS.stackSize(1).durability(MAX_ENERGY + 1));
Expand Down

0 comments on commit 64cb297

Please sign in to comment.