12 lines
314 B
Java
12 lines
314 B
Java
![]() |
package net.serenas.shitmod;
|
||
|
|
||
|
import net.minecraft.entity.effect.StatusEffect;
|
||
|
import net.minecraft.entity.effect.StatusEffectCategory;
|
||
|
|
||
|
public class careFreeMelodyEffect extends StatusEffect {
|
||
|
|
||
|
protected careFreeMelodyEffect(StatusEffectCategory category, int color) {
|
||
|
super(category, color);
|
||
|
}
|
||
|
}
|