View Issue Details
ID | Project | Category | View Status | Date Submitted | Last Update |
---|---|---|---|---|---|
0000979 | Industrial-Craft² | machines | public | 2014-03-08 20:09 | 2014-06-26 15:38 |
Reporter | yeganer | Assigned To | Thunderdark | ||
Priority | normal | Severity | tweak | Reproducibility | always |
Status | resolved | Resolution | fixed | ||
OS | Windows | OS Version | 7 | ||
Summary | 0000979: Adv. Miner doing nothing | ||||
Description | Advanced Miner is doing nothing in latest release. | ||||
Steps To Reproduce | - Place down an Advanced Miner - connect it to any power source - Place OV/OD Scanner in it - Apply redstone Signal Result: Nothing happens. | ||||
Additional Information | After decompiling IC2 build 416 i looked in the Code and in the work methode it is checking if the block isAir() and canMine() both are true and then tries to mine it I think the comparison should be if (!isAir() && canMine()) doMine() endif | ||||
Tags | No tags attached. | ||||
Minecraft Version | |||||
|
This is the Code snipped my decompilation returned: Block block = this.worldObj.getBlock(this.minetargetX, this.minelayer, this.minetargetZ); if (block.isAir(this.worldObj, this.minetargetX, this.minelayer, this.minetargetZ) && this.canMine(this.minetargetX, this.minelayer, this.minetargetZ, block)) { this.doMine(block); } Where obviously the ! in front of block.isAir() is missing |
|
fixed in next build a missing ! ;-) |
Date Modified | Username | Field | Change |
---|---|---|---|
2014-03-08 20:09 | yeganer | New Issue | |
2014-03-09 00:08 | yeganer | Note Added: 0002208 | |
2014-06-26 15:38 | Thunderdark | Note Added: 0002692 | |
2014-06-26 15:38 | Thunderdark | Status | new => resolved |
2014-06-26 15:38 | Thunderdark | Resolution | open => fixed |
2014-06-26 15:38 | Thunderdark | Assigned To | => Thunderdark |