mirror of
https://github.com/libraryaddict/LibsDisguises.git
synced 2024-11-05 09:09:40 +01:00
Fixed falling block
This commit is contained in:
parent
e6627c1fea
commit
7460ba3012
@ -964,6 +964,19 @@ public class ReflectionManager
|
||||
{
|
||||
ex.printStackTrace();
|
||||
}
|
||||
} else if (value instanceof BlockPosition)
|
||||
{
|
||||
BlockPosition pos = (BlockPosition) value;
|
||||
|
||||
try
|
||||
{
|
||||
return getNmsConstructor("BlockPosition", int.class, int.class, int.class).newInstance(pos.getX(),
|
||||
pos.getY(), pos.getZ());
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
ex.printStackTrace();
|
||||
}
|
||||
}
|
||||
|
||||
return value;
|
||||
|
Loading…
Reference in New Issue
Block a user