Fixed incorrect drops for ender chest (#4751)

This commit is contained in:
Leo Lee 2022-01-22 22:01:56 +08:00 committed by GitHub
parent b3fec3d86f
commit 67a0ae0246
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -66,4 +66,8 @@ class EnderChest extends Transparent{
VanillaBlocks::OBSIDIAN()->asItem()->setCount(8)
];
}
public function isAffectedBySilkTouch() : bool{
return true;
}
}