Skip to content

Commit

Permalink
Restore mixin generic
Browse files Browse the repository at this point in the history
  • Loading branch information
octylFractal committed Sep 30, 2019
1 parent a273e27 commit 3093c45
Showing 1 changed file with 2 additions and 1 deletion.
Expand Up @@ -20,14 +20,15 @@
package com.sk89q.worldedit.fabric.mixin; package com.sk89q.worldedit.fabric.mixin;


import com.sk89q.worldedit.extension.platform.Watchdog; import com.sk89q.worldedit.extension.platform.Watchdog;
import net.minecraft.server.ServerTask;
import net.minecraft.server.MinecraftServer; import net.minecraft.server.MinecraftServer;
import net.minecraft.util.NonBlockingThreadExecutor; import net.minecraft.util.NonBlockingThreadExecutor;
import net.minecraft.util.SystemUtil; import net.minecraft.util.SystemUtil;
import org.spongepowered.asm.mixin.Mixin; import org.spongepowered.asm.mixin.Mixin;
import org.spongepowered.asm.mixin.Shadow; import org.spongepowered.asm.mixin.Shadow;


@Mixin(MinecraftServer.class) @Mixin(MinecraftServer.class)
public abstract class MixinMinecraftServer extends NonBlockingThreadExecutor implements Watchdog { public abstract class MixinMinecraftServer extends NonBlockingThreadExecutor<ServerTask> implements Watchdog {


public MixinMinecraftServer(String name) { public MixinMinecraftServer(String name) {
super(name); super(name);
Expand Down

0 comments on commit 3093c45

Please sign in to comment.