Fish / Dolphin should be WaterMob, and WaterMob Creature

This commit is contained in:
md_5 2018-07-16 08:51:25 +10:00
parent 59c4c0b7d4
commit 62633f31df
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 {}