Skip to content

Commit

Permalink
Update Aquatic description and fix hierarchy (#2551)
Browse files Browse the repository at this point in the history
* Update Aquatic description and fix hierarchy

* run spotlessApply
  • Loading branch information
ImMorpheus authored Jul 3, 2024
1 parent 4f37e65 commit 75f057f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,10 @@
*/
package org.spongepowered.api.entity.living.aquatic;

import org.spongepowered.api.block.BlockTypes;
import org.spongepowered.api.entity.living.PathfinderAgent;

/**
* Represents an aquatic creature that may be found in {@link BlockTypes#WATER}
* Represents an aquatic creature that needs to stay in water to survive
*/
public interface Aquatic extends PathfinderAgent {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,14 +28,13 @@
import org.spongepowered.api.data.value.Value;
import org.spongepowered.api.entity.living.Living;
import org.spongepowered.api.entity.living.Monster;
import org.spongepowered.api.entity.living.aquatic.Aquatic;

import java.util.Optional;

/**
* Represents a Guardian.
*/
public interface Guardian extends Aquatic, Monster {
public interface Guardian extends Monster {

/**
* {@link Keys#BEAM_TARGET_ENTITY}
Expand Down

0 comments on commit 75f057f

Please sign in to comment.