Skip to content

Commit

Permalink
Fix refmap
Browse files Browse the repository at this point in the history
  • Loading branch information
kappa-maintainer committed Jun 21, 2024
1 parent f3355bb commit 453c81f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
import org.spongepowered.asm.mixin.injection.At;
import org.spongepowered.asm.mixin.injection.Redirect;

@Mixin(TileIndexer.class)
@Mixin(value = TileIndexer.class, remap = false)
public class TileIndexerMixin {
@Redirect(method = "reload", at = @At(value = "INVOKE", target = "Lcom/google/common/util/concurrent/Futures;addCallback(Lcom/google/common/util/concurrent/ListenableFuture;Lcom/google/common/util/concurrent/FutureCallback;)V"))
private void redirectAddCallback(ListenableFuture future, FutureCallback callback) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
import org.spongepowered.asm.mixin.injection.At;
import org.spongepowered.asm.mixin.injection.Redirect;

@Mixin(TransferNodeEnergy.class)
@Mixin(value = TransferNodeEnergy.class, remap = false)
public class TransferNodeEnergyMixin {
@Redirect(method = "update", at = @At(value = "INVOKE", target = "Lcom/google/common/util/concurrent/Futures;addCallback(Lcom/google/common/util/concurrent/ListenableFuture;Lcom/google/common/util/concurrent/FutureCallback;)V"))
private void redirectAddCallback(ListenableFuture future, FutureCallback callback) {
Expand Down

0 comments on commit 453c81f

Please sign in to comment.