Skip to content

Commit

Permalink
Remove unused stub
Browse files Browse the repository at this point in the history
The class doesn't even exist in the version of Litematica I'm using so it doesn't
seem to have an effect on descriptor strings in our bytecode. Otherwise my game
would crash.
  • Loading branch information
ZacSharp committed Jul 30, 2024
1 parent b915151 commit 6b6931c
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 32 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,19 @@

import com.google.common.collect.ImmutableMap;
import fi.dy.masa.litematica.schematic.LitematicaSchematic;
import net.minecraft.core.BlockPos;
import net.minecraft.world.level.block.Mirror;
import net.minecraft.world.level.block.Rotation;

public class SchematicPlacement extends SchematicPlacementUnloaded {
public class SchematicPlacement {

public String getName() {
throw new LinkageError();
}

public BlockPos getOrigin() {
throw new LinkageError();
}

public Rotation getRotation() {
throw new LinkageError();
Expand Down

This file was deleted.

0 comments on commit 6b6931c

Please sign in to comment.