Implemented the swift sneak enchantment (#5404)

Co-authored-by: Dylan T <dktapps@pmmp.io>

closes #5301
This commit is contained in:
Javier León
2022-12-01 17:38:41 -03:00
committed by GitHub
parent 0b497654f2
commit 3984d220bb
4 changed files with 7 additions and 0 deletions

View File

@ -73,6 +73,8 @@ final class EnchantmentIdMap{
$this->register(EnchantmentIds::MENDING, VanillaEnchantments::MENDING());
$this->register(EnchantmentIds::VANISHING, VanillaEnchantments::VANISHING());
$this->register(EnchantmentIds::SWIFT_SNEAK, VanillaEnchantments::SWIFT_SNEAK());
}
public function register(int $mcpeId, Enchantment $enchantment) : void{

View File

@ -66,4 +66,5 @@ final class EnchantmentIds{
public const PIERCING = 34;
public const QUICK_CHARGE = 35;
public const SOUL_SPEED = 36;
public const SWIFT_SNEAK = 37;
}