Skip to content

Commit

Permalink
enchantment/flame.go: Arrow flame duration is 100 ticks (not 100 seco…
Browse files Browse the repository at this point in the history
…nds) (#925)

enchantment/flame.go: FlameDuration() always returns five seconds.
  • Loading branch information
Dasciam authored Oct 15, 2024
1 parent aacb1af commit 5900b08
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions server/item/enchantment/flame.go
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,9 @@ func (Flame) Rarity() item.EnchantmentRarity {
return item.EnchantmentRarityRare
}

// BurnDuration always returns a hundred seconds, no matter the level.
// BurnDuration always returns five seconds, no matter the level.
func (Flame) BurnDuration() time.Duration {
return time.Second * 100
return time.Second * 5
}

// CompatibleWithEnchantment ...
Expand Down

0 comments on commit 5900b08

Please sign in to comment.