All Downloads are FREE. Search and download functionalities are using the official Maven repository.

walkmc.nbt.LocationAdapter.kt Maven / Gradle / Ivy

There is a newer version: 2.4.0
Show newest version
package walkmc.nbt

import net.minecraft.server.*
import org.bukkit.*
import walkmc.extensions.*

/**
 * A tag adapter for adapting [Location].
 */
object LocationAdapter : TagAdapter {
   override fun load(key: String, tag: NBTTagCompound): Location {
      return location(tag.getString(key), true)
   }
   
   override fun save(key: String, value: Location, tag: NBTTagCompound) {
      tag.setString(key, value.stringify(true))
   }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy