Switched rarities of Iron and Straw totems to be consistent in regard to progression.
This commit is contained in:
@ -6,7 +6,7 @@ import net.minecraft.world.item.Rarity;
|
||||
|
||||
public class IronChargeItem extends ChargeItem {
|
||||
public IronChargeItem() {
|
||||
super(Rarity.COMMON, false);
|
||||
super(Rarity.UNCOMMON, false);
|
||||
}
|
||||
|
||||
public static String getName() {
|
||||
|
||||
@ -6,7 +6,7 @@ import net.minecraft.world.item.Rarity;
|
||||
|
||||
public class StrawChargeItem extends ChargeItem {
|
||||
public StrawChargeItem() {
|
||||
super(Rarity.UNCOMMON, false);
|
||||
super(Rarity.COMMON, false);
|
||||
}
|
||||
|
||||
public static String getName() {
|
||||
|
||||
@ -7,7 +7,7 @@ import net.minecraft.world.item.Rarity;
|
||||
|
||||
public class IronTotemItem extends TotemItem {
|
||||
public IronTotemItem() {
|
||||
super(Rarity.COMMON, false);
|
||||
super(Rarity.UNCOMMON, false);
|
||||
}
|
||||
|
||||
public static String getName() {
|
||||
|
||||
@ -7,7 +7,7 @@ import net.minecraft.world.item.Rarity;
|
||||
|
||||
public class StrawTotemItem extends TotemItem {
|
||||
public StrawTotemItem() {
|
||||
super(Rarity.UNCOMMON, false);
|
||||
super(Rarity.COMMON, false);
|
||||
}
|
||||
|
||||
public static String getName() {
|
||||
|
||||
Reference in New Issue
Block a user