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

com.skillw.attsystem.internal.feature.personal.PlayerDataSave.kt Maven / Gradle / Ivy

The newest version!
package com.skillw.attsystem.internal.feature.personal

import org.bukkit.event.player.PlayerQuitEvent
import taboolib.common.platform.event.EventPriority
import taboolib.common.platform.event.SubscribeEvent

private object PlayerUpdate {

    @SubscribeEvent(EventPriority.LOWEST)
    fun quit(event: PlayerQuitEvent) {
        val player = event.player
        InitialAttrData.pushAttrData(player)
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy