mirror of
https://github.com/Sollace/Unicopia.git
synced 2024-11-24 22:07:59 +01:00
12 lines
304 B
Java
12 lines
304 B
Java
package com.minelittlepony.unicopia.mixin;
|
|
|
|
import org.spongepowered.asm.mixin.Mixin;
|
|
import org.spongepowered.asm.mixin.gen.Invoker;
|
|
|
|
import net.minecraft.entity.mob.BlazeEntity;
|
|
|
|
@Mixin(BlazeEntity.class)
|
|
public interface MixinBlazeEntity {
|
|
@Invoker
|
|
void invokeSetFireActive(boolean active);
|
|
}
|