add boots, recipe (#2161)

This commit is contained in:
theMegaTech 2025-11-04 23:13:18 +02:00 committed by GitHub
parent cd3c32dfeb
commit 9ea490354f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 17 additions and 6 deletions

View file

@ -7,7 +7,7 @@ PlayerEvents.tick((event) => {
&& player.chestArmorItem === 'create:netherite_backtank'
&& player.legsArmorItem === 'minecraft:netherite_leggings'
&& (player.feetArmorItem === 'create:netherite_diving_boots'
|| player.feetArmorItem === 'tfc:metal/boots/blue_steel')) {
|| player.feetArmorItem === 'minecraft:netherite_boots')) {
player.potionEffects.add("minecraft:fire_resistance", 350, 0, true, false);
}
});