Skip to content

Commit

Permalink
fix another issue?
Browse files Browse the repository at this point in the history
  • Loading branch information
andantet committed Jul 8, 2023
1 parent 9c032f6 commit 6e6826c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ minecraft_version=1.20.1
yarn_build=5
loader_version=0.14.21

mod_version=1.0.1
mod_version=1.0.2

mod_id=bubble
maven_group=dev.andante
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/dev/andante/bubble/BubbleManager.kt
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ class BubbleManager private constructor(private val server: MinecraftServer) {
* Kicks all players back to the overworld spawn position.
*/
private fun kickPlayers(world: IBubbleWorld) {
val players = world.getWorldPlayers()
val players = world.getWorldPlayers().toList()
if (players.isEmpty()) {
return
}
Expand Down

0 comments on commit 6e6826c

Please sign in to comment.