Files
faithful-origins/src/main/java/com/smithy/faithful/power/PreventBlockSlowness.java

11 lines
321 B
Java

package com.smithy.faithful.power;
import io.github.apace100.apoli.power.Power;
import io.github.apace100.apoli.power.PowerType;
import net.minecraft.entity.LivingEntity;
public class PreventBlockSlowness extends Power {
public PreventBlockSlowness(PowerType<?> type, LivingEntity entity) {
super(type, entity);
}
}