Correctly name Herbiboar classes
- Rename Herbiboars to HerbiboarPlugin - Rename HerbiboarsOverlay to HerbiboarOverlay - Rename "Herbiboars" to "Herbiboar" plugin name Signed-off-by: Tomas Slusny <slusnucky@gmail.com>
This commit is contained in:
@@ -40,14 +40,14 @@ import net.runelite.client.ui.overlay.OverlayLayer;
|
||||
import net.runelite.client.ui.overlay.OverlayPosition;
|
||||
import net.runelite.client.ui.overlay.OverlayUtil;
|
||||
|
||||
class HerbiboarsOverlay extends Overlay
|
||||
class HerbiboarOverlay extends Overlay
|
||||
{
|
||||
private final Client client;
|
||||
private final Herbiboars plugin;
|
||||
private final HerbiboarPlugin plugin;
|
||||
private final HerbiboarConfig config;
|
||||
|
||||
@Inject
|
||||
public HerbiboarsOverlay(Client client, Herbiboars plugin, HerbiboarConfig config)
|
||||
public HerbiboarOverlay(Client client, HerbiboarPlugin plugin, HerbiboarConfig config)
|
||||
{
|
||||
setPosition(OverlayPosition.DYNAMIC);
|
||||
setLayer(OverlayLayer.ABOVE_WIDGETS);
|
||||
@@ -61,9 +61,9 @@ import net.runelite.client.ui.overlay.Overlay;
|
||||
|
||||
@Slf4j
|
||||
@PluginDescriptor(
|
||||
name = "Herbiboars"
|
||||
name = "Herbiboar"
|
||||
)
|
||||
public class Herbiboars extends Plugin
|
||||
public class HerbiboarPlugin extends Plugin
|
||||
{
|
||||
private static final List<WorldPoint> END_LOCATIONS = Arrays.asList(
|
||||
new WorldPoint(3693, 3798, 0),
|
||||
@@ -96,7 +96,7 @@ public class Herbiboars extends Plugin
|
||||
private Client client;
|
||||
|
||||
@Inject
|
||||
private HerbiboarsOverlay overlay;
|
||||
private HerbiboarOverlay overlay;
|
||||
|
||||
@Inject
|
||||
private HerbiboarConfig config;;
|
||||
Reference in New Issue
Block a user