Skip to content

Commit

Permalink
Reduce increased flux cost per block mined, and fix a derp with the c…
Browse files Browse the repository at this point in the history
…harging.
  • Loading branch information
bonii-xx committed Oct 24, 2014
1 parent f734169 commit 57c3158
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/tconstruct/library/tools/AbilityHelper.java
Expand Up @@ -407,9 +407,9 @@ public static boolean damageEnergyTool (ItemStack stack, NBTTagCompound tags, En
trueSpeed *= 6;
if (energy != -1)
{
int usage = (int)(trueSpeed * 3.3f);
int usage = (int)(trueSpeed * 2.8f);
// first try charging from the hotbar if we don't have CoFHs override
if (equalityOverrideLoaded && entity instanceof EntityPlayer)
if (!equalityOverrideLoaded && entity instanceof EntityPlayer)
{
ToolCore tool = (ToolCore) stack.getItem();
// workaround for charging flux-capacitors making tools unusable
Expand Down

0 comments on commit 57c3158

Please sign in to comment.