The Pulverizer Mod

The Pulverizer Mod

3.7k Downloads

[Bug] Pulverizer durability per diamond is 512 in the config instead of 1561

James103 opened this issue ยท 1 comments

commented

public int pulverizerDiamondDurability = 512;

According to the readme, "Each diamond powers the Pulverizer for 1561 uses (the same amount as a Diamond Pickaxe has durability)." However, according to the above code, each diamond only powers the Pulverizer for 512 uses by default. Why is there this discrepancy?

Note: The actual value used defaults to 1561 if no config is present, as shown below:

public static int loadPulverizeMaximumFromConfig() {
if (PulverizerMod.CONFIG != null) return PulverizerMod.CONFIG.pulverizerDiamondDurability;
return 1561;
}

commented

Thanks for the report - I actually updated the base diamond durability to 512 in revision f82a99 and forgot to update the README. I'll need to update the reference in "PulverizerBlockEntity.java" as well. If you'd like to play with 1561, please simply update the value in your config. I personally thought that getting 1561 was too over-powered and unbalanced, so that's why I decreased it.