Fix isVisable and isMinimapVisable spelling (Visable -> Visible) (#7766)

This commit is contained in:
Nokkasiili
2019-02-09 00:22:57 +02:00
committed by Tomas Slusny
parent ba47ec1d1c
commit b4de9b6cc4
3 changed files with 5 additions and 5 deletions

View File

@@ -63,14 +63,14 @@ public interface NPCComposition
*
* @return the mini-map visible state
*/
boolean isMinimapVisable();
boolean isMinimapVisible();
/**
* Gets whether the NPC is visible.
*
* @return the visible state
*/
boolean isVisable();
boolean isVisible();
/**
* Gets the ID of the NPC.

View File

@@ -77,7 +77,7 @@ class BarrowsOverlay extends Overlay
{
final NPCComposition composition = npc.getComposition();
if (composition != null && !composition.isMinimapVisable())
if (composition != null && !composition.isMinimapVisible())
{
continue;
}

View File

@@ -47,11 +47,11 @@ public interface RSNPCComposition extends NPCComposition
@Import("isMinimapVisible")
@Override
boolean isMinimapVisable();
boolean isMinimapVisible();
@Import("isVisible")
@Override
boolean isVisable();
boolean isVisible();
@Import("id")
@Override