mirror of
https://github.com/Artillex-Studios/AxMinions.git
synced 2025-02-18 01:31:40 +01:00
Fix oopsie
This commit is contained in:
parent
19eb8f561e
commit
56866f6864
@ -3,7 +3,7 @@ package com.artillexstudios.axminions.api.minions.utils
|
||||
import com.artillexstudios.axminions.api.minions.Minion
|
||||
import org.bukkit.World
|
||||
|
||||
data class ChunkPos(val world: World, val x: Int, val z: Int, @Volatile var ticking: Boolean) {
|
||||
data class ChunkPos(val world: World, val x: Int, val z: Int, @Volatile @JvmField var ticking: Boolean) {
|
||||
val minions = arrayListOf<Minion>()
|
||||
val worldUUID = world.uid
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user