Skip to content

Commit

Permalink
Deprecate moved classes
Browse files Browse the repository at this point in the history
  • Loading branch information
IThundxr committed Jan 7, 2024
1 parent ea3c358 commit 9ff1781
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
/**
* Assortment of Block Related Utilities
*/
@Deprecated(forRemoval = true)
public class BlockUtils {
public static boolean isWoodBased(BlockState state) {
NoteBlockInstrument noteBlockInstrument = state.instrument();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@

import org.violetmoon.quark.base.Quark;

@Deprecated(forRemoval = true)
public class QuarkEffect extends MobEffect {

public QuarkEffect(String name, MobEffectCategory type, int color) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@
import org.violetmoon.zeta.block.be.ZetaBlockEntity;

// formerly from AutoRegLib
@Deprecated(forRemoval = true)
public abstract class SimpleInventoryBlockEntity extends ZetaBlockEntity implements WorldlyContainer {

public SimpleInventoryBlockEntity(BlockEntityType<?> tileEntityTypeIn, BlockPos pos, BlockState state) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
import net.minecraft.world.level.block.Blocks;
import net.minecraft.world.level.block.SoundType;

@Deprecated(forRemoval = true)
public class VanillaWoods {

public static record Wood(String name, Block log, Block wood, Block planks, Block leaf, Block fence, boolean nether, SoundType soundWood, SoundType soundPlanks) {}
Expand Down

0 comments on commit 9ff1781

Please sign in to comment.