parent
852213d35f
commit
cda5175b74
@ -0,0 +1,25 @@
|
|||||||
|
package io.izzel.arclight.common.mixin.bukkit;
|
||||||
|
|
||||||
|
import org.spigotmc.WatchdogThread;
|
||||||
|
import org.spongepowered.asm.mixin.Mixin;
|
||||||
|
import org.spongepowered.asm.mixin.Overwrite;
|
||||||
|
|
||||||
|
@Mixin(value = WatchdogThread.class, remap = false)
|
||||||
|
public class WatchdogThreadMixin {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author IzzelAliz
|
||||||
|
* @reason
|
||||||
|
*/
|
||||||
|
@Overwrite
|
||||||
|
public static void doStart(int timeoutTime, boolean restart) {
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author IzzelAliz
|
||||||
|
* @reason
|
||||||
|
*/
|
||||||
|
@Overwrite
|
||||||
|
public static void tick() {
|
||||||
|
}
|
||||||
|
}
|
||||||
@ -35,6 +35,7 @@
|
|||||||
"JavaPluginMixin",
|
"JavaPluginMixin",
|
||||||
"MaterialMixin",
|
"MaterialMixin",
|
||||||
"PluginClassLoaderMixin",
|
"PluginClassLoaderMixin",
|
||||||
"PotionEffectTypeMixin"
|
"PotionEffectTypeMixin",
|
||||||
|
"WatchdogThreadMixin"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
Loading…
Reference in New Issue
Block a user