I can get unlimited experience from manganese ore
GoldenTotem opened this issue · 3 comments
Issue Description
I can get unlimited experience from manganese ore and shaka stone.
Steps to Reproduce
1)Break a manganese ore or shaka stone.
2)It will drop itself and some xp.
3)Place the block and break it, repeat the process, I can get infinity experience.
Tropicraft Version: 1.12.2-7.19.115
Forge Version: 14.23.5.2854
Crash log
PASTE YOUR CRASH LOG HERE
Unable to reproduce in 1.15 or 1.16
Unfortunately, as we no longer support 1.12, we're unable to provide a fix for this issue. Sorry about that!
For any looking for a solution, the following ZenScript works around. You’ll want to change the nuclearcraft dust to a dust of your choice.
`// * Tropicraft Manganese ore > 2 dust
events.onBlockHarvestDrops(function(event as BlockHarvestDropsEvent) {
if(event.blockState has item:tropicraft:ore.asBlock().definition.getStateFromMeta(3)) {
event.drops = [nuclearcraft:dust:11 % 100, nuclearcraft:dust:11 % 100];
}
});
// * Tropicraft Shaka ore > Cobblestone
events.onBlockHarvestDrops(function(event as BlockHarvestDropsEvent) {
if(event.blockState has item:tropicraft:ore.asBlock().definition.getStateFromMeta(4)) {
event.drops = [minecraft:cobblestone % 100];
}
}); `