mirror of
https://github.com/mcMMO-Dev/mcMMO.git
synced 2024-11-22 21:26:46 +01:00
removing this task that i once thought i needed and now realize that it is completely unnecessary
This commit is contained in:
parent
c6c1c39a98
commit
478d542981
@ -1,20 +0,0 @@
|
|||||||
package com.gmail.nossr50.runnables.player;
|
|
||||||
|
|
||||||
import com.gmail.nossr50.datatypes.player.PlayerProfile;
|
|
||||||
import com.gmail.nossr50.mcMMO;
|
|
||||||
import com.gmail.nossr50.util.EventUtils;
|
|
||||||
import org.bukkit.entity.Player;
|
|
||||||
import org.bukkit.scheduler.BukkitRunnable;
|
|
||||||
|
|
||||||
public class ExecutePlayerProfileLoadEventTask extends BukkitRunnable {
|
|
||||||
private Player player;
|
|
||||||
private PlayerProfile profile;
|
|
||||||
public ExecutePlayerProfileLoadEventTask(Player player, PlayerProfile profile){
|
|
||||||
this.player = player;
|
|
||||||
this.profile = profile;
|
|
||||||
}
|
|
||||||
@Override
|
|
||||||
public void run() {
|
|
||||||
EventUtils.callPlayerProfileLoadEvent(this.player, this.profile);
|
|
||||||
}
|
|
||||||
}
|
|
Loading…
Reference in New Issue
Block a user