Fish / Dolphin should be WaterMob, and WaterMob Creature

By: md_5 <git@md-5.net>
This commit is contained in:
Bukkit/Spigot
2018-07-16 08:51:25 +10:00
parent 335202751d
commit 8bde1c55cc
3 changed files with 3 additions and 3 deletions

View File

@@ -1,3 +1,3 @@
package org.bukkit.entity; package org.bukkit.entity;
public interface Dolphin extends Creature { } public interface Dolphin extends WaterMob { }

View File

@@ -3,4 +3,4 @@ package org.bukkit.entity;
/** /**
* Represents a fish entity. * Represents a fish entity.
*/ */
public interface Fish extends Creature { } public interface Fish extends WaterMob { }

View File

@@ -3,4 +3,4 @@ package org.bukkit.entity;
/** /**
* Represents a Water Mob * Represents a Water Mob
*/ */
public interface WaterMob extends LivingEntity {} public interface WaterMob extends Creature {}