Skip to content

Commit

Permalink
Merge pull request #30 from repo-alt/rv3-1.7.10
Browse files Browse the repository at this point in the history
Formation plane fixed for parts and fireworks
  • Loading branch information
repo-alt authored Nov 27, 2020
2 parents 8dc0bd5 + 46c1e4d commit d4b7cd5
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
aeversion=rv3
aechannel=beta
aebuild=34
aebuild=35
#KEEP V6 FOR MOD SUPPORT
aegroup=appeng
aebasename=appliedenergistics2
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -428,7 +428,7 @@ public IAEItemStack injectItems( final IAEItemStack input, final Actionable type

if( w.getBlock( x, y, z ).isReplaceable( w, x, y, z ) )
{
if( placeBlock == YesNo.YES && ( i instanceof ItemBlock || i instanceof IPlantable || i instanceof ItemSkull || i instanceof ItemFirework || i instanceof IPartItem || i instanceof ItemReed ) )
if( placeBlock == YesNo.YES && ( i instanceof ItemBlock || i instanceof IPlantable || i instanceof ItemSkull || i instanceof ItemFirework || i instanceof ItemReed ) )
{
final EntityPlayer player = Platform.getPlayer( (WorldServer) w );
Platform.configurePlayer( player, side, this.getTile() );
Expand Down Expand Up @@ -476,6 +476,11 @@ public IAEItemStack injectItems( final IAEItemStack input, final Actionable type

maxStorage -= is.stackSize;
}
else if (i instanceof ItemFirework)
{
i.onItemUse( is, player, w, x, y, z, side.getOpposite().ordinal(), side.offsetX, side.offsetY, side.offsetZ );
maxStorage -= is.stackSize;
}
else
{
player.setCurrentItemOrArmor( 0, is.copy() );
Expand Down

0 comments on commit d4b7cd5

Please sign in to comment.