mirror of
https://github.com/Minestom/Minestom.git
synced 2024-12-29 12:37:42 +01:00
Fix block nbt update
Signed-off-by: TheMode <themode@outlook.fr>
This commit is contained in:
parent
025cdab7e6
commit
f5dc048185
@ -572,7 +572,7 @@ public class InstanceContainer extends Instance {
|
||||
*/
|
||||
private boolean isAlreadyChanged(@NotNull Point blockPosition, @NotNull Block block) {
|
||||
final Block changedBlock = currentlyChangingBlocks.get(blockPosition);
|
||||
return changedBlock != null && changedBlock.id() == block.id();
|
||||
return Objects.equals(changedBlock, block);
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -2,7 +2,9 @@ package net.minestom.server.instance;
|
||||
|
||||
import net.minestom.server.api.Env;
|
||||
import net.minestom.server.api.EnvTest;
|
||||
import net.minestom.server.coordinate.Vec;
|
||||
import net.minestom.server.instance.block.Block;
|
||||
import net.minestom.server.tag.Tag;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
import static org.junit.jupiter.api.Assertions.assertEquals;
|
||||
@ -47,4 +49,28 @@ public class InstanceBlockIntegrationTest {
|
||||
instance.loadChunk(0, 0).join();
|
||||
assertEquals(Block.AIR, instance.getBlock(0, 50, 0));
|
||||
}
|
||||
|
||||
@Test
|
||||
public void blockNbt(Env env) {
|
||||
var instance = env.createFlatInstance();
|
||||
assertThrows(NullPointerException.class, () -> instance.getBlock(0, 0, 0),
|
||||
"No exception throw when getting a block in an unloaded chunk");
|
||||
|
||||
instance.loadChunk(0, 0).join();
|
||||
|
||||
var tag = Tag.Integer("key");
|
||||
var block = Block.STONE.withTag(tag, 5);
|
||||
var point = new Vec(0, 50, 0);
|
||||
// Initial placement
|
||||
instance.setBlock(point, block);
|
||||
assertEquals(5, instance.getBlock(point).getTag(tag));
|
||||
|
||||
// Override
|
||||
instance.setBlock(point, block.withTag(tag, 7));
|
||||
assertEquals(7, instance.getBlock(point).getTag(tag));
|
||||
|
||||
// Different block type
|
||||
instance.setBlock(point, Block.GRASS.withTag(tag, 8));
|
||||
assertEquals(8, instance.getBlock(point).getTag(tag));
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user