mirror of
https://github.com/plexusorg/Plex-FAWE.git
synced 2024-12-22 17:27:38 +00:00
Fix queryRel returning data value for block at absolute coordinates (#2645)
* Replace toWorld with toWorldRel for relative data * re-add accidentally deleted annotation
This commit is contained in:
parent
0182d52c02
commit
9d20df9e6b
@ -85,7 +85,7 @@ public class WorldEditExpressionEnvironment implements ExpressionEnvironment {
|
||||
@SuppressWarnings("deprecation")
|
||||
@Override
|
||||
public int getBlockDataRel(double x, double y, double z) {
|
||||
return extent.getBlock(toWorld(x, y, z)).getBlockType().getLegacyCombinedId() & 0xF;
|
||||
return extent.getBlock(toWorldRel(x, y, z).toBlockPoint()).getBlockType().getLegacyCombinedId() & 0xF;
|
||||
}
|
||||
|
||||
//FAWE start
|
||||
|
Loading…
Reference in New Issue
Block a user