This repository has been archived on 2023-11-26. You can view files and clone it, but cannot push or open issues or pull requests.
GulliverReloaded/src/main/java/com/thebrokenrail/gulliverreloaded/mixin/StatusEffectAccessor.java

16 lines
490 B
Java
Raw Normal View History

2020-03-27 03:05:28 +00:00
package com.thebrokenrail.gulliverreloaded.mixin;
import net.minecraft.entity.effect.StatusEffect;
import net.minecraft.entity.effect.StatusEffectType;
import org.spongepowered.asm.mixin.Mixin;
import org.spongepowered.asm.mixin.gen.Invoker;
@SuppressWarnings("unused")
@Mixin(StatusEffect.class)
public interface StatusEffectAccessor {
@Invoker
static StatusEffect createStatusEffect(StatusEffectType type, int color) {
throw new UnsupportedOperationException();
}
}