Better comment for Entity#isAutoViewable

This commit is contained in:
Felix Cravic 2020-12-06 20:11:14 +01:00
parent 0f97930f79
commit 07990b26e9

View File

@ -307,13 +307,13 @@ public abstract class Entity implements Viewable, EventHandler, DataContainer, P
} }
/** /**
* When set to true, the entity will automatically get new viewers when they come too close * When set to true, the entity will automatically get new viewers when they come too close.
* This can be use to complete control over which player can see it, without having to deal with * This can be use to have complete control over which player can see it, without having to deal with
* raw packets. * raw packets.
* <p> * <p>
* True by default for all entities. * True by default for all entities.
* When set to false, it is important to mention that the players will not be removed automatically from its viewers * When set to false, it is important to mention that the players will not be removed automatically from its viewers
* list, you would have to do that manually when being too far. * list, you would have to do that manually using {@link #addViewer(Player)} and {@link #removeViewer(Player)}..
* *
* @return true if the entity is automatically viewable for close players, false otherwise * @return true if the entity is automatically viewable for close players, false otherwise
*/ */