Don't apply offset to SimpleClipboard (#1751)

* Fix offset

* Don't apply offset in SimpleClipboard

Co-authored-by: Alexander Brandes <mc.cache@web.de>
This commit is contained in:
Owen 2022-06-13 17:42:50 -04:00 committed by GitHub
parent b797655d0c
commit 39e1a811f7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -40,7 +40,7 @@ public abstract class SimpleClipboard implements Clipboard {
@Override
public void setOrigin(BlockVector3 origin) {
this.origin = origin.subtract(offset);
this.origin = origin;
}
@Override