Skip to content

Commit

Permalink
refactor: コメントを修正
Browse files Browse the repository at this point in the history
  • Loading branch information
rsoba committed May 28, 2023
1 parent 2d2770d commit e009ee2
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ object BreakUtil {
case Material.QUARTZ_ORE =>
new ItemStack(Material.QUARTZ, bonus)
// レッドストーン鉱石, グロウストーン, スイカブロック, シーランタン, ラピスラズリ鉱石は、
// ドロップアイテムの個数を求める計算が通常の鉱石の扱いと異なるため、bonusの値に依らない特別な処理が必要である
// ドロップアイテムの個数を求める計算が通常の鉱石の扱いと異なるため、特別な処理が必要である
case Material.REDSTONE_ORE | Material.GLOWING_REDSTONE_ORE =>
val withBonus = (rand * (fortuneLevel + 2) + 4).toInt
new ItemStack(Material.GLOWSTONE_DUST, withBonus)
Expand All @@ -240,6 +240,7 @@ object BreakUtil {
val withBonus = (rand * (fortuneLevel + 3) + 2).toInt
val amount = if (withBonus > 4) 4 else withBonus
new ItemStack(Material.GLOWSTONE_DUST, amount)
// 同様に、メロンブロックは幸運エンチャントがついている場合、9個までしかドロップしない
case Material.MELON_BLOCK =>
val withBonus = (rand * (fortuneLevel + 5) + 3).toInt
val amount = if (withBonus > 9) 9 else withBonus
Expand Down

0 comments on commit e009ee2

Please sign in to comment.