Fix isVisable and isMinimapVisable spelling (Visable -> Visible) (#7766)
This commit is contained in:
@@ -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.
|
||||
|
||||
@@ -77,7 +77,7 @@ class BarrowsOverlay extends Overlay
|
||||
{
|
||||
final NPCComposition composition = npc.getComposition();
|
||||
|
||||
if (composition != null && !composition.isMinimapVisable())
|
||||
if (composition != null && !composition.isMinimapVisible())
|
||||
{
|
||||
continue;
|
||||
}
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user