Skip to content

Commit 2f255b7

Browse files
committed
docs(plugin26): update TODO comments
1 parent 6cd5074 commit 2f255b7

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

plugin2026/src/main/kotlin/sc/plugin2026/PiranhaMoveMistake.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@ package sc.plugin2026
33
import sc.shared.IMoveMistake
44

55
enum class PiranhaMoveMistake(override val message: String) : IMoveMistake {
6-
// TODO
6+
// TODO relevant bei performMove(Directly)
77
}

plugin2026/src/main/kotlin/sc/plugin2026/util/GamePlugin.kt

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,6 @@ import sc.plugin2026.GameState
99
import sc.plugin2026.Move
1010
import sc.shared.*
1111

12-
// TODO
13-
1412
@XStreamAlias(value = "winreason")
1513
enum class PiranhasWinReason(override val message: String, override val isRegular: Boolean = true): IWinReason {
1614
BIGGER_SWARM("%s hat den größeren Schwarm")
@@ -23,7 +21,7 @@ class GamePlugin: IGamePlugin<Move> {
2321
val scoreDefinition: ScoreDefinition =
2422
ScoreDefinition(arrayOf(
2523
ScoreFragment("Siegpunkte", WinReason("%s hat gewonnen."), ScoreAggregation.SUM),
26-
ScoreFragment("Schwarmgroeße", PiranhasWinReason.BIGGER_SWARM, ScoreAggregation.AVERAGE),
24+
ScoreFragment("Schwarmgröße", PiranhasWinReason.BIGGER_SWARM, ScoreAggregation.AVERAGE),
2725
))
2826
}
2927

0 commit comments

Comments
 (0)