Skip to content

Commit

Permalink
Fix Kuudra reminder texts
Browse files Browse the repository at this point in the history
  • Loading branch information
lunaynx committed Feb 24, 2025
1 parent 155828c commit 04c01cb
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,10 @@ object KuudraReminders : Module(
private data class Reminder(val regex: Regex, val shouldRun: Boolean, val alert: String)
private val reminders = listOf(
Reminder(Regex("WARNING: You do not have a key for this tier in your inventory, you will not be able to claim rewards."), keyReminder, "No key in inventory"),
Reminder(Regex("Your Fresh Tools Perk bonus doubles your building speed for the next 10 seconds!"), freshTools, "Buy Upgrades"),
Reminder(Regex("\\[NPC] Elle: It's time to build the Ballista again! Cover me!"), buildBallista, "Pick up supplies"),
Reminder(Regex("\\[NPC] Elle: Okay adventurers, I will go and fish up Kuudra!"), buyUpgrades, "Build Ballista"),
Reminder(Regex("\\[NPC] Elle: Not again!"), pickUpSupplies, "Fresh Tools")
Reminder(Regex("Your Fresh Tools Perk bonus doubles your building speed for the next 10 seconds!"), freshTools, "Fresh Tools"),
Reminder(Regex("\\[NPC] Elle: It's time to build the Ballista again! Cover me!"), buildBallista, "Build Ballista"),
Reminder(Regex("\\[NPC] Elle: Okay adventurers, I will go and fish up Kuudra!"), buyUpgrades, "Buy Upgrades"),
Reminder(Regex("\\[NPC] Elle: Not again!"), pickUpSupplies, "Pick up supplies")
)

init {
Expand Down

0 comments on commit 04c01cb

Please sign in to comment.