Skip to content

Commit

Permalink
Version Bump
Browse files Browse the repository at this point in the history
Also added a comment to explain the odd use of cows in quern code.
  • Loading branch information
Kittychanley committed Jan 2, 2016
1 parent 53503a9 commit f60f6f6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.prop
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
minecraft_version=1.7.10
forge_version=10.13.4.1558-1.7.10
mod_version=0.79.26
mod_version=0.79.27
mod_id=TerraFirmaCraft
group_name=com.bioxx.tfc
2 changes: 1 addition & 1 deletion src/Common/com/bioxx/tfc/Reference.java
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ public class Reference

public static final int VERSION_MAJOR = 0;
public static final int VERSION_MINOR = 79;
public static final int VERSION_REVISION = 26;
public static final int VERSION_REVISION = 27;

public static final String MOD_VERSION = VERSION_MAJOR+"."+VERSION_MINOR+"."+VERSION_REVISION;

Expand Down
1 change: 1 addition & 0 deletions src/Common/com/bioxx/tfc/TileEntities/TEQuern.java
Original file line number Diff line number Diff line change
Expand Up @@ -161,6 +161,7 @@ public void damageStackInSlot(int slot)
{
if(storage[slot] != null)
{
// Use a non-player, non-null entity so the handstone is damaged even when the player is in creative mode
storage[slot].damageItem(slot, new EntityCowTFC(this.worldObj));
if(storage[slot].stackSize == 0 || storage[slot].getItemDamage() == storage[slot].getMaxDamage())
{
Expand Down

0 comments on commit f60f6f6

Please sign in to comment.