Skip to content

Commit

Permalink
Minor dimensional mirror adjustments
Browse files Browse the repository at this point in the history
  • Loading branch information
ACGaming committed Jul 6, 2024
1 parent 551ab5e commit 087ac59
Showing 1 changed file with 1 addition and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ public float apply(ItemStack stack, @Nullable World world, @Nullable EntityLivin
public ActionResult<ItemStack> onItemRightClick(World world, EntityPlayer player, EnumHand hand)
{
ItemStack stack = player.getHeldItem(hand);
if (!world.isRemote && stack.getItemDamage() <= 15)
if (stack.getItemDamage() <= 15)
{
if (this.bedPosition != null)
{
Expand Down Expand Up @@ -94,12 +94,6 @@ public boolean isDamageable()
return false;
}

@Override
public boolean shouldRotateAroundWhenRendering()
{
return false;
}

@Override
public void onUpdate(ItemStack stack, World world, Entity entity, int itemSlot, boolean isSelected)
{
Expand Down

0 comments on commit 087ac59

Please sign in to comment.