mirror of
https://github.com/mcMMO-Dev/mcMMO.git
synced 2025-04-04 02:36:23 +02:00
46 lines
1.2 KiB
Java
46 lines
1.2 KiB
Java
package com.gmail.nossr50;
|
|
|
|
import net.minecraft.server.EntityWolf;
|
|
|
|
import org.bukkit.craftbukkit.entity.CraftWolf;
|
|
import org.bukkit.entity.Entity;
|
|
import org.bukkit.entity.Player;
|
|
import org.bukkit.plugin.Plugin;
|
|
|
|
public class mcTaming {
|
|
private static mcMMO plugin;
|
|
public mcTaming(mcMMO instance) {
|
|
plugin = instance;
|
|
}
|
|
|
|
private static volatile mcTaming instance;
|
|
|
|
public static String getOwnerName(Entity theWolf){
|
|
CraftWolf cWolf = (CraftWolf)theWolf;
|
|
EntityWolf eWolf = (EntityWolf)cWolf.getHandle();
|
|
|
|
String playerName = eWolf.v();
|
|
return playerName;
|
|
}
|
|
public static boolean hasOwner(Entity theWolf, Plugin pluginx){
|
|
for(Player x : pluginx.getServer().getOnlinePlayers()){
|
|
if(x != null && x.getName().equals(getOwnerName(theWolf))){
|
|
return true;
|
|
}
|
|
}
|
|
return false;
|
|
}
|
|
public Player getOwner(Entity theWolf, Plugin pluginx){
|
|
for(Player x : pluginx.getServer().getOnlinePlayers()){
|
|
if(x != null && x.getName().equals(getOwnerName(theWolf))){
|
|
return x;
|
|
}
|
|
}
|
|
return null;
|
|
}
|
|
public static mcTaming getInstance() {
|
|
// TODO Auto-generated method stub
|
|
return null;
|
|
}
|
|
}
|