Remove no longer present Particle and PotionType

This commit is contained in:
DerFrZocker 2024-06-07 19:07:29 +02:00
parent 9a7b11df8d
commit 8192fb22cf
No known key found for this signature in database
GPG key ID: 713F71FFFE1DDF91
2 changed files with 0 additions and 2 deletions

View file

@ -47,7 +47,6 @@ public interface Particle extends OldEnum<Particle>, Keyed {
* Uses {@link Color} as DataType
*/
Particle.Typed<Color> ENTITY_EFFECT = getParticle("entity_effect");
Particle AMBIENT_ENTITY_EFFECT = getParticle("ambient_entity_effect");
Particle WITCH = getParticle("witch");
Particle DRIPPING_WATER = getParticle("dripping_water");
Particle DRIPPING_LAVA = getParticle("dripping_lava");

View file

@ -18,7 +18,6 @@ import org.jetbrains.annotations.Nullable;
* the Creative mode inventory
*/
public abstract class PotionType implements OldEnum<PotionType>, Keyed {
public static final PotionType EMPTY = getPotionType("empty");
public static final PotionType WATER = getPotionType("water");
public static final PotionType MUNDANE = getPotionType("mundane");
public static final PotionType THICK = getPotionType("thick");