Better balance of pollution, adjusted timer

This commit is contained in:
Technus 2016-10-02 20:42:52 +02:00
parent dab1447798
commit 1c4d6851c2
2 changed files with 2 additions and 2 deletions

View file

@ -343,7 +343,7 @@ public abstract class GT_MetaTileEntity_MultiBlockBase extends MetaTileEntity {
public abstract int getMaxEfficiency(ItemStack aStack);
/**
* Gets the pollution this Device outputs to a Muffler per tick (10000 = one Pullution Block)
* Gets the pollution this Device outputs to a Muffler per tick (10000 = one Pollution Block)
*/
public abstract int getPollutionPerTick(ItemStack aStack);

View file

@ -1452,7 +1452,7 @@ public abstract class GT_Proxy implements IGT_Mod, IGuiHandler, IFuelHandler {
}
}
if(aEvent.world.provider.dimensionId==0)
GT_Pollution.onWorldTick(aEvent.world, (int) (aEvent.world.getTotalWorldTime() % 1200));
GT_Pollution.onWorldTick(aEvent.world, (int) (aEvent.world.getTotalWorldTime() % 1000));
}
}