Skip to content

Commit

Permalink
Told HarvestUnanalyzedModule to not mess with other modules' work
Browse files Browse the repository at this point in the history
*re #45
  • Loading branch information
HenryLoenwind committed Apr 17, 2017
1 parent 6ed2f2f commit cbbaae9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ minecraft_version=1.7.10
forge_version=10.13.4.1492-1.7.10
forgeDep_version=10.13.4

mod_version=0.10.12
mod_version=0.10.13

#Comment out this line to get rid of the appendix
mod_appendix=beta
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ public class HarvestUnanalyzedModule implements IAfarmControlModule {

@Override
public void doWork(WorkTile workTile) {
workTile.doDestroy = workTile.seed != null && !workTile.isAnalyzed;
workTile.doDestroy |= workTile.seed != null && !workTile.isAnalyzed;
}

@Override
Expand Down

0 comments on commit cbbaae9

Please sign in to comment.