Skip to content

Commit bd048d6

Browse files
[autofix.ci] apply automated fixes
1 parent 9474a41 commit bd048d6

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

plugin/src/main/kotlin/dev/betrix/superSmashMobsBrawl/abilities/BabyBaconBombAbility.kt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,3 @@ class BabyBaconBombAbility(player: Player) : BrawlAbility("baby_bacon_bomb", pla
99
player.sendDebugMessage("Baby Bacon Bomb ability pending implementation.")
1010
}
1111
}
12-

plugin/src/main/kotlin/dev/betrix/superSmashMobsBrawl/abilities/BouncyBaconAbility.kt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,3 @@ class BouncyBaconAbility(player: Player) : BrawlAbility("bouncy_bacon", player)
99
player.sendDebugMessage("Bouncy Bacon ability pending implementation.")
1010
}
1111
}
12-

plugin/src/main/kotlin/dev/betrix/superSmashMobsBrawl/passives/NetherPigPassive.kt

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,13 @@ class NetherPigPassive(player: Player) : BrawlPassive("nether_pig", player) {
88

99
override fun setup() {
1010
super.setup()
11-
player.sendDebugMessage("Nether Pig passive pending implementation. Threshold: $lowHealthThreshold hearts.")
11+
player.sendDebugMessage(
12+
"Nether Pig passive pending implementation. Threshold: $lowHealthThreshold hearts."
13+
)
1214
}
1315

1416
override fun teardown() {
1517
player.sendDebugMessage("Nether Pig passive teardown pending implementation.")
1618
super.teardown()
1719
}
1820
}
19-

0 commit comments

Comments
 (0)