Skip to content

Commit

Permalink
#532 Fixed backteleporting in minigame mode.
Browse files Browse the repository at this point in the history
  • Loading branch information
Shynixn committed Jul 23, 2024
1 parent d128071 commit 8b0f5dd
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ plugins {
}

group = "com.github.shynixn"
version = "6.46.1"
version = "6.46.2"

repositories {
mavenLocal()
Expand Down
4 changes: 2 additions & 2 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,9 +55,9 @@
# built documents.
#
# The short X.Y version.
version = '6.46.1'
version = '6.46.2'
# The full version, including alpha/beta/rc tags.
release = '6.46.1'
release = '6.46.2'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -181,10 +181,12 @@ class BlockBallMiniGameImpl constructor(
if (team == Team.RED && redTeam.size < arena.meta.redTeamMeta.maxAmount) {
joinTeam(player, team, arena.meta.redTeamMeta)
storage.team = team
storage.goalTeam = team
joinResult = JoinResult.SUCCESS_RED
} else if (team == Team.BLUE && blueTeam.size < arena.meta.blueTeamMeta.maxAmount) {
joinTeam(player, team, arena.meta.blueTeamMeta)
storage.team = team
storage.goalTeam = team
joinResult = JoinResult.SUCCESS_BLUE
}
}
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/plugin-legacy.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: BlockBall
version: 6.46.1
version: 6.46.2
author: Shynixn
website: https://www.spigotmc.org/members/shynixn.63455/
main: com.github.shynixn.blockball.BlockBallPlugin
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/plugin.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: BlockBall
version: 6.46.1
version: 6.46.2
author: Shynixn
website: https://www.spigotmc.org/members/shynixn.63455/
main: com.github.shynixn.blockball.BlockBallPlugin
Expand Down

0 comments on commit 8b0f5dd

Please sign in to comment.