blob: faf5c9d11795b5ec4768792179d5d9024e30a0c6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
package com.keuin.ohmyvanillamc.mixin;
import com.keuin.ohmyvanillamc.DummyLogger;
import net.minecraft.server.network.EntityTrackerEntry;
import org.apache.logging.log4j.Logger;
import org.spongepowered.asm.mixin.Final;
import org.spongepowered.asm.mixin.Mixin;
import org.spongepowered.asm.mixin.Shadow;
import org.spongepowered.asm.mixin.gen.Accessor;
@Mixin(EntityTrackerEntry.class)
public class DisableEntityTrackerEntrySpamming {
private static final Logger LOGGER_DUMMY = new DummyLogger();
static {
setLOGGER(LOGGER_DUMMY);
}
@Shadow
@Final
private static Logger LOGGER;
@Accessor("LOGGER")
private static Logger getLOGGER() {
throw new AssertionError();
}
@Accessor("LOGGER")
private static void setLOGGER(Logger logger) {
throw new AssertionError();
}
}
|