When using pollBlockHits() on the mod there are unnecessary events broadcasted. If I hit a block once then there are two events: one of hitting the block and the other is (x, y, z, 7, 0) where x,y,z are the entity's coordinates (my coordinates). Also the correct way pollBlockHits should work is using left-click not right click.
When using
pollBlockHits()
on the mod there are unnecessary events broadcasted. If I hit a block once then there are two events: one of hitting the block and the other is (x, y, z, 7, 0) wherex,y,z
are the entity's coordinates (my coordinates). Also the correct waypollBlockHits
should work is using left-click not right click.