chat notifications: disable by default and default highlightOwnName to true

This commit is contained in:
Adam
2018-06-13 13:23:01 -04:00
parent 2f2f33afa9
commit 53dcd76c93
2 changed files with 4 additions and 3 deletions

View File

@@ -44,7 +44,7 @@ public interface ChatNotificationsConfig extends Config
) )
default boolean highlightOwnName() default boolean highlightOwnName()
{ {
return false; return true;
} }
@ConfigItem( @ConfigItem(
@@ -73,7 +73,7 @@ public interface ChatNotificationsConfig extends Config
position = 3, position = 3,
keyName = "notifyOnHighlight", keyName = "notifyOnHighlight",
name = "Notify on hightlight", name = "Notify on hightlight",
description = "Notifies you whenever a word is above is highlighted" description = "Notifies you whenever a highlighted word is matched"
) )
default boolean notifyOnHighlight() default boolean notifyOnHighlight()
{ {

View File

@@ -48,7 +48,8 @@ import net.runelite.client.plugins.PluginDescriptor;
import net.runelite.client.util.Text; import net.runelite.client.util.Text;
@PluginDescriptor( @PluginDescriptor(
name = "Chat Notifications" name = "Chat Notifications",
enabledByDefault = false
) )
public class ChatNotificationsPlugin extends Plugin public class ChatNotificationsPlugin extends Plugin
{ {