You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
301 B
Java
13 lines
301 B
Java
package com.zivilon.cinder_loe.mixins;
|
|
|
|
import net.minecraft.entity.Entity;
|
|
import org.spongepowered.asm.mixin.Mixin;
|
|
import org.spongepowered.asm.mixin.gen.Accessor;
|
|
|
|
@Mixin(Entity.class)
|
|
public interface MixinEntity {
|
|
|
|
@Accessor("invulnerable")
|
|
void setInvulnerable(boolean invulnerable);
|
|
}
|