mirror of
https://github.com/Sollace/Unicopia.git
synced 2025-02-20 11:54:23 +01:00
16 lines
412 B
Java
16 lines
412 B
Java
|
package com.minelittlepony.unicopia.mixin;
|
||
|
|
||
|
import org.spongepowered.asm.mixin.Mixin;
|
||
|
import org.spongepowered.asm.mixin.gen.Invoker;
|
||
|
|
||
|
import net.minecraft.advancement.criterion.Criteria;
|
||
|
import net.minecraft.advancement.criterion.Criterion;
|
||
|
|
||
|
@Mixin(Criteria.class)
|
||
|
public interface MixinCriteria {
|
||
|
@Invoker("register")
|
||
|
static <T extends Criterion<?>> T register(T object) {
|
||
|
return null;
|
||
|
}
|
||
|
}
|