daily task reminders: correct relog messages

Staffs are the only task which sometimes can require a relog
This commit is contained in:
ksergio39
2019-04-07 15:07:10 -04:00
committed by Adam
parent 4b91ae53df
commit bed7ac29f4

View File

@@ -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 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 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 int BONEMEAL_PER_DIARY = 13;
private static final String RELOG_MESSAGE = " (Requires relog)"; private static final String RELOG_MESSAGE = " (May require a relog)";
@Inject @Inject
private Client client; private Client client;
@@ -167,7 +167,7 @@ public class DailyTasksPlugin extends Plugin
} }
else if (dailyReset) 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) else if (dailyReset)
{ {
sendChatMessage(ESSENCE_MESSAGE + RELOG_MESSAGE); sendChatMessage(ESSENCE_MESSAGE);
} }
} }
} }
@@ -212,7 +212,7 @@ public class DailyTasksPlugin extends Plugin
} }
else if (dailyReset) else if (dailyReset)
{ {
sendChatMessage(RUNES_MESSAGE + RELOG_MESSAGE); sendChatMessage(RUNES_MESSAGE);
} }
} }
} }
@@ -227,7 +227,7 @@ public class DailyTasksPlugin extends Plugin
} }
else if (dailyReset) else if (dailyReset)
{ {
sendChatMessage(SAND_MESSAGE + RELOG_MESSAGE); sendChatMessage(SAND_MESSAGE);
} }
} }
} }
@@ -242,7 +242,7 @@ public class DailyTasksPlugin extends Plugin
} }
else if (dailyReset) else if (dailyReset)
{ {
sendChatMessage(FLAX_MESSAGE + RELOG_MESSAGE); sendChatMessage(FLAX_MESSAGE);
} }
} }
} }
@@ -267,7 +267,7 @@ public class DailyTasksPlugin extends Plugin
} }
else if (dailyReset) else if (dailyReset)
{ {
sendChatMessage(BONEMEAL_MESSAGE + RELOG_MESSAGE); sendChatMessage(BONEMEAL_MESSAGE);
} }
} }
} }