Skip to content

Commit

Permalink
Fixed treetap not working well. Fixes #141 Updated some info and vers…
Browse files Browse the repository at this point in the history
…ions #releaseBuild
  • Loading branch information
GoryMoon committed Jun 15, 2018
1 parent bc97b31 commit 1e7f2e6
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 10 deletions.
8 changes: 2 additions & 6 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ apply plugin: 'net.minecraftforge.gradle.forge'
sourceCompatibility = 1.8
targetCompatibility = 1.8

version = "2.4.20"
version = "2.4.21"

def ENV = System.getenv()
if (ENV.BUILD_NUMBER) {
Expand All @@ -48,10 +48,6 @@ repositories {
name = "Modmuss50"
url = "http://maven.modmuss50.me/"
}
maven {
name = "ic2"
url = "http://maven.ic2.player.to/"
}
}


Expand All @@ -62,7 +58,7 @@ dependencies {
compile ('RebornCore:RebornCore-1.12.2:+:dev'){
transitive = false
}
deobfCompile 'net.industrial-craft:industrialcraft-2:2.8.23-ex112'
deobfCompile 'net.industrial-craft:industrialcraft-2:2.8.85-ex112'
}

processResources{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ private boolean farm(World world, BlockPos pos) {
for (ItemStack stack : drops) {
getCart().addItemToChest(stack);
}
return true;
return drops.size() > 0;
} else {
final ArrayList<BlockPos> checked = new ArrayList<>();
if (removeAt(world, pos, checked)) {
Expand Down
6 changes: 3 additions & 3 deletions src/main/resources/mcmod.info
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@
"version": "${version}",
"mcversion": "${mcversion}",
"url": "",
"updateUrl": "",
"authorList": ["Vswe"],
"credits": "",
"updateUrl": "https://minecraft.curseforge.com/projects/steves-carts-reborn",
"authorList": ["modmuss50", "Gory_Moon","Vswe"],
"credits": "Credits to Vswe for the original mod",
"logoFile": "",
"screenshots": [],
"dependencies": []
Expand Down

0 comments on commit 1e7f2e6

Please sign in to comment.