unimplement Keyed in Structure

This commit is contained in:
dfsek
2021-12-26 19:26:02 -07:00
parent 1ac3964589
commit 9c5b789aa2
6 changed files with 16 additions and 25 deletions

View File

@@ -1,6 +1,7 @@
package com.dfsek.terra.addons.palette.shortcut.block;
import com.dfsek.terra.api.block.state.BlockState;
import com.dfsek.terra.api.registry.key.RegistryKey;
import com.dfsek.terra.api.structure.Structure;
import com.dfsek.terra.api.util.Rotation;
import com.dfsek.terra.api.util.vector.Vector3Int;
@@ -21,9 +22,4 @@ public class SingletonStructure implements Structure {
world.setBlockState(location, blockState);
return true;
}
@Override
public String getID() {
return blockState.getAsString();
}
}