Merge pull request #663 from UnderscoreTud/ArmorStandWatcher-fix

Fix ArmorStandWatcher
This commit is contained in:
libraryaddict 2022-07-17 11:35:44 +12:00 committed by GitHub
commit 66d5644f69
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -74,7 +74,7 @@ public class ArmorStandWatcher extends LivingWatcher {
if (isTrue) {
b1 = (byte) (b1 | value);
} else {
b1 = (byte) (b1 & value);
b1 = (byte) (b1 & ~value);
}
setData(MetaIndex.ARMORSTAND_META, b1);