Skip to content

Commit 32a354b

Browse files
committed
make PotionEffectType Taggable
1 parent 5b7dab8 commit 32a354b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/org/spongepowered/api/effect/potion/PotionEffectType.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,14 +25,14 @@
2525
package org.spongepowered.api.effect.potion;
2626

2727
import net.kyori.adventure.text.ComponentLike;
28-
import org.spongepowered.api.registry.DefaultedRegistryValue;
28+
import org.spongepowered.api.tag.Taggable;
2929
import org.spongepowered.api.util.annotation.CatalogedBy;
3030

3131
/**
3232
* Represents a possible type of {@link PotionEffect}.
3333
*/
3434
@CatalogedBy(PotionEffectTypes.class)
35-
public interface PotionEffectType extends DefaultedRegistryValue, ComponentLike {
35+
public interface PotionEffectType extends Taggable<PotionEffectType>, ComponentLike {
3636

3737
/**
3838
* Gets whether this potion effect is applied instantly or over time.

0 commit comments

Comments
 (0)