View Issue Details
| ID | Project | Category | View Status | Date Submitted | Last Update |
|---|---|---|---|---|---|
| 0000469 | Industrial-Craft² | machines | public | 2013-07-04 11:01 | 2014-08-26 05:05 |
| Reporter | caver | Assigned To | Player | ||
| Priority | normal | Severity | tweak | Reproducibility | always |
| Status | closed | Resolution | fixed | ||
| Summary | 0000469: Miner cycles and energy consumption [patch included] | ||||
| Description | In version 1.116.350 miner was reworked, but it consume more power and work faster then needed. 349 and earlier: instrument consumption | duration ----------------------------------------- Drill 1eU/tick | 200 ticks DiamondDrill 15eU/tick | 50 ticks 350 and newer: instrument consumption | duration ----------------------------------------- Drill 6eU/tick | 20 ticks DiamondDrill 200eU/tick | 50 ticks =airblock 3eu/tick | 20 ticks It's a mistake for my opinion. I will proposing a simply patch to resolve this problem | ||||
| Tags | No tags attached. | ||||
| Minecraft Version | |||||
|
|
miner.patch (914 bytes)
--- ./ic2/core/block/machine/tileentity/TileEntityMiner.java 2013-07-04 16:19:23.019536012 +0700
+++ ./ic2/core/block/machine/tileentity/TileEntityMiner.new.java 2013-07-04 16:17:25.000000000 +0700
@@ -401,19 +401,19 @@
if(isAirBlock)
{
mode = Mode.MineAir;
- energyPerTick = 3;
- duration = 20;
+ energyPerTick = 1;
+ duration = 50;
} else
if(drillSlot.get().itemID == Ic2Items.miningDrill.itemID)
{
mode = Mode.MineDrill;
- energyPerTick = 6;
- duration = 20;
+ energyPerTick = 1;
+ duration = 200;
} else
if(drillSlot.get().itemID == Ic2Items.diamondDrill.itemID)
{
mode = Mode.MineDDrill;
- energyPerTick = 200;
+ energyPerTick = 15;
duration = 50;
} else
{
|
|
|
200 and 20 were swapped, the other values are fine imo. It's supposed to be a bit more expensive. |
|
|
Please refer to 0000448 bug |
|
|
|
|
|
|
| Date Modified | Username | Field | Change |
|---|---|---|---|
| 2013-07-04 11:01 | caver | New Issue | |
| 2013-07-04 11:01 | caver | File Added: miner.patch | |
| 2013-07-04 11:49 | Player | Note Added: 0001109 | |
| 2013-07-04 11:49 | Player | Status | new => resolved |
| 2013-07-04 11:49 | Player | Resolution | open => fixed |
| 2013-07-04 11:49 | Player | Assigned To | => Player |
| 2013-07-04 12:09 | caver | Note Added: 0001111 | |
| 2013-07-04 12:10 | caver | Status | resolved => feedback |
| 2013-07-04 12:10 | caver | Resolution | fixed => reopened |
| 2013-07-04 12:31 | caver | File Added: 2013-07-04_19.28.32.png | |
| 2013-07-04 12:31 | caver | File Added: 2013-07-04_19.28.44.png | |
| 2014-08-26 05:05 | Player | Status | feedback => closed |
| 2014-08-26 05:05 | Player | Resolution | reopened => fixed |