entity hider: fix hide pets
The check for this got accidentally inverted when moving it out of the mixins
This commit is contained in:
@@ -182,7 +182,7 @@ public class EntityHiderPlugin extends Plugin
|
||||
{
|
||||
NPC npc = (NPC) renderable;
|
||||
|
||||
if (npc.getComposition().isFollower() && npc == client.getFollower())
|
||||
if (npc.getComposition().isFollower() && npc != client.getFollower())
|
||||
{
|
||||
return !hidePets;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user