From bed7ac29f4eb27214244dd2299a3f541b7f9f217 Mon Sep 17 00:00:00 2001 From: ksergio39 <45315230+ksergio39@users.noreply.github.com> Date: Sun, 7 Apr 2019 15:07:10 -0400 Subject: [PATCH] daily task reminders: correct relog messages Staffs are the only task which sometimes can require a relog --- .../dailytaskindicators/DailyTasksPlugin.java | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/runelite-client/src/main/java/net/runelite/client/plugins/dailytaskindicators/DailyTasksPlugin.java b/runelite-client/src/main/java/net/runelite/client/plugins/dailytaskindicators/DailyTasksPlugin.java index 245fcd6b92..4076ef693c 100644 --- a/runelite-client/src/main/java/net/runelite/client/plugins/dailytaskindicators/DailyTasksPlugin.java +++ b/runelite-client/src/main/java/net/runelite/client/plugins/dailytaskindicators/DailyTasksPlugin.java @@ -65,7 +65,7 @@ public class DailyTasksPlugin extends Plugin private static final String FLAX_MESSAGE = "You have bowstrings waiting to be converted from flax from the Flax keeper."; private static final String BONEMEAL_MESSAGE = "You have bonemeal and slime waiting to be collected from Robin."; private static final int BONEMEAL_PER_DIARY = 13; - private static final String RELOG_MESSAGE = " (Requires relog)"; + private static final String RELOG_MESSAGE = " (May require a relog)"; @Inject private Client client; @@ -167,7 +167,7 @@ public class DailyTasksPlugin extends Plugin } else if (dailyReset) { - sendChatMessage(HERB_BOX_MESSAGE + RELOG_MESSAGE); + sendChatMessage(HERB_BOX_MESSAGE); } } } @@ -197,7 +197,7 @@ public class DailyTasksPlugin extends Plugin } else if (dailyReset) { - sendChatMessage(ESSENCE_MESSAGE + RELOG_MESSAGE); + sendChatMessage(ESSENCE_MESSAGE); } } } @@ -212,7 +212,7 @@ public class DailyTasksPlugin extends Plugin } else if (dailyReset) { - sendChatMessage(RUNES_MESSAGE + RELOG_MESSAGE); + sendChatMessage(RUNES_MESSAGE); } } } @@ -227,7 +227,7 @@ public class DailyTasksPlugin extends Plugin } else if (dailyReset) { - sendChatMessage(SAND_MESSAGE + RELOG_MESSAGE); + sendChatMessage(SAND_MESSAGE); } } } @@ -242,7 +242,7 @@ public class DailyTasksPlugin extends Plugin } else if (dailyReset) { - sendChatMessage(FLAX_MESSAGE + RELOG_MESSAGE); + sendChatMessage(FLAX_MESSAGE); } } } @@ -267,7 +267,7 @@ public class DailyTasksPlugin extends Plugin } else if (dailyReset) { - sendChatMessage(BONEMEAL_MESSAGE + RELOG_MESSAGE); + sendChatMessage(BONEMEAL_MESSAGE); } } }