Skip to content

Commit

Permalink
release: v24.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
xeruf committed Sep 21, 2023
1 parent b34818b commit be53844
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ The version should always be in sync with the [GUI](https://github.com/software-
### 24.2.X - 2023-10-XX
- Crash oversped ships
- Allow other player to move on when one is disqualified
-

### 24.1.2 Stable Release - 2023-09-20

### 24.1.1 Helper Adjustments - 2023-09-14
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
socha.gameName=mississippi
socha.version.year=24
socha.version.minor=01
socha.version.patch=02
socha.version.patch=03
1 change: 1 addition & 0 deletions sdk/src/main/server-api/sc/api/plugins/IGameState.kt
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ interface IGameState: RoomMessage, PublicCloneable<IGameState> {

/** Das Team, welches das Spiel eröffnet. */
val startTeam: ITeam
get() = Team.ONE

/** Ob das Spiel zu Ende ist. */
val isOver: Boolean
Expand Down
1 change: 1 addition & 0 deletions server/src/test/java/sc/server/plugins/TestGameState.kt
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ data class TestGameState(
override var turn: Int = 0,
var state: Int = 0,
): IGameState {

override val currentTeam: Team
get() = Team.values()[turn % Team.values().size]

Expand Down

0 comments on commit be53844

Please sign in to comment.