File tree 2 files changed +4
-3
lines changed
src/main/java/appeng/parts/automation
2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 1
1
aeversion =rv3
2
2
aechannel =beta
3
- aebuild =42 -GTNH
3
+ aebuild =43 -GTNH
4
4
# KEEP V6 FOR MOD SUPPORT
5
5
aegroup =appeng
6
6
aebasename =appliedenergistics2
Original file line number Diff line number Diff line change @@ -545,11 +545,12 @@ else if (i instanceof ItemFirework)
545
545
if (((EntityItem )result ).getEntityItem ().getItem () == Item .getItemFromBlock (Blocks .dragon_egg ))
546
546
{ // Ducttape fix for HEE replacing the Dragon Egg
547
547
// HEE does cancel the event but does not mark passed entity as dead
548
- worked = ! result . isDead ;
548
+ worked = true ;
549
549
}
550
550
else {
551
+ // e.g. ExU item collector cancels item spawn, but takes the item inside
552
+ worked = result .isDead ;
551
553
result .setDead ();
552
- worked = false ;
553
554
}
554
555
}
555
556
}
You can’t perform that action at this time.
0 commit comments