Added missing new method to WorldEditBlockState

This commit is contained in:
Intelli 2023-10-12 10:50:16 -06:00
parent b48dcec589
commit 488392cdbc
1 changed files with 6 additions and 0 deletions

View File

@ -205,4 +205,10 @@ public final class WorldEditBlockState implements BlockState {
return null;
}
@Override
public BlockState copy() {
// TODO Auto-generated method stub
return null;
}
}