mirror of
https://github.com/Ellpeck/ActuallyAdditions.git
synced 2024-11-22 07:13:28 +01:00
Deprecate ActuallyItem and DrillAugmentItem
They both have replacements and are unused
This commit is contained in:
parent
4b55999af3
commit
f758e8beac
2 changed files with 4 additions and 0 deletions
|
@ -6,6 +6,8 @@ import net.minecraft.world.item.Item;
|
|||
* I'm using a custom class here as I'm sure we'll need a unified way of declaring rules
|
||||
* but also so we can always know if something is ours in the simplest form.
|
||||
*/
|
||||
// Superseded by ItemBase
|
||||
@Deprecated
|
||||
public abstract class ActuallyItem extends Item implements IActuallyItem {
|
||||
public ActuallyItem(Properties properties) {
|
||||
super(properties);
|
||||
|
|
|
@ -3,6 +3,8 @@ package de.ellpeck.actuallyadditions.mod.items.misc;
|
|||
|
||||
import de.ellpeck.actuallyadditions.mod.items.base.ActuallyItem;
|
||||
|
||||
// Superseded by ItemDrillUpgrade
|
||||
@Deprecated
|
||||
public class DrillAugmentItem extends ActuallyItem {
|
||||
private final AugmentType type;
|
||||
|
||||
|
|
Loading…
Reference in a new issue