Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
Faboslav committed Oct 2, 2024
1 parent 3a9133b commit d931a99
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
import net.minecraft.block.BlockState;
import net.minecraft.block.Blocks;
import net.minecraft.block.Oxidizable;

import java.util.Optional;
import java.util.function.Supplier;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
import net.minecraft.util.math.BlockPos;
import net.minecraft.world.World;
import net.minecraft.world.event.GameEvent;

import java.util.Optional;

public final class OnUseOxidizable
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ public void friendsandfoes_randomTick(
Random random,
CallbackInfo ci
) {
((Degradable)this).tickDegradation(state, world, pos, random);
((Degradable) this).tickDegradation(state, world, pos, random);
ci.cancel();
}

Expand Down

0 comments on commit d931a99

Please sign in to comment.