Update WhaleWatchersPlugin.java

Add proper PVP Plugin type
Add Proper import for Plugin Type
This commit is contained in:
Jonathan
2019-05-02 19:09:11 -06:00
committed by GitHub
parent d1ea0a7de2
commit 1b004b8196

View File

@@ -35,13 +35,15 @@ import net.runelite.client.eventbus.Subscribe;
import net.runelite.client.events.OverlayMenuClicked;
import net.runelite.client.plugins.Plugin;
import net.runelite.client.plugins.PluginDescriptor;
import net.runelite.client.plugins.PluginType;
import net.runelite.client.ui.overlay.OverlayManager;
import org.apache.commons.lang3.ObjectUtils;
@PluginDescriptor(
name = "Whale Watchers",
description = "A Plugin to save help whales in the wild",
tags = {"whale watchers", "whale", "protect item", "warning", "pklite"}
tags = {"whale watchers", "whale", "protect item", "warning", "pklite"},
type = PluginType.PVP
)
public class WhaleWatchersPlugin extends Plugin
{