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
TheBrokenRail 2a3223a873
All checks were successful
Gulliver Reloaded/pipeline/head This commit looks good
1.0
Initial Release
2020-03-26 23:05:28 -04:00

16 lines
490 B
Java

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();
}
}