mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-04 02:01:44 +01:00
SPIGOT-4003: Fix TropicalFish.getType
This commit is contained in:
parent
cfc30bb382
commit
764b81ced2
1 changed files with 6 additions and 0 deletions
|
@ -5,6 +5,7 @@ import java.util.Map;
|
|||
import net.minecraft.server.EntityTropicalFish;
|
||||
import org.bukkit.DyeColor;
|
||||
import org.bukkit.craftbukkit.CraftServer;
|
||||
import org.bukkit.entity.EntityType;
|
||||
import org.bukkit.entity.TropicalFish;
|
||||
|
||||
public class CraftTropicalFish extends CraftFish implements TropicalFish {
|
||||
|
@ -23,6 +24,11 @@ public class CraftTropicalFish extends CraftFish implements TropicalFish {
|
|||
return "CraftTropicalFish";
|
||||
}
|
||||
|
||||
@Override
|
||||
public EntityType getType() {
|
||||
return EntityType.TROPICAL_FISH;
|
||||
}
|
||||
|
||||
@Override
|
||||
public DyeColor getPatternColor() {
|
||||
return getPatternColor(getHandle().getVariant());
|
||||
|
|
Loading…
Reference in a new issue