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
|
* @return the mini-map visible state
|
||||||
*/
|
*/
|
||||||
boolean isMinimapVisable();
|
boolean isMinimapVisible();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Gets whether the NPC is visible.
|
* Gets whether the NPC is visible.
|
||||||
*
|
*
|
||||||
* @return the visible state
|
* @return the visible state
|
||||||
*/
|
*/
|
||||||
boolean isVisable();
|
boolean isVisible();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Gets the ID of the NPC.
|
* Gets the ID of the NPC.
|
||||||
|
|||||||
@@ -77,7 +77,7 @@ class BarrowsOverlay extends Overlay
|
|||||||
{
|
{
|
||||||
final NPCComposition composition = npc.getComposition();
|
final NPCComposition composition = npc.getComposition();
|
||||||
|
|
||||||
if (composition != null && !composition.isMinimapVisable())
|
if (composition != null && !composition.isMinimapVisible())
|
||||||
{
|
{
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -47,11 +47,11 @@ public interface RSNPCComposition extends NPCComposition
|
|||||||
|
|
||||||
@Import("isMinimapVisible")
|
@Import("isMinimapVisible")
|
||||||
@Override
|
@Override
|
||||||
boolean isMinimapVisable();
|
boolean isMinimapVisible();
|
||||||
|
|
||||||
@Import("isVisible")
|
@Import("isVisible")
|
||||||
@Override
|
@Override
|
||||||
boolean isVisable();
|
boolean isVisible();
|
||||||
|
|
||||||
@Import("id")
|
@Import("id")
|
||||||
@Override
|
@Override
|
||||||
|
|||||||
Reference in New Issue
Block a user