summaryrefslogtreecommitdiff
path: root/src/main/java/at/hannibal2/skyhanni/data
diff options
context:
space:
mode:
authorhannibal2 <24389977+hannibal00212@users.noreply.github.com>2024-06-15 22:13:22 +0200
committerhannibal2 <24389977+hannibal00212@users.noreply.github.com>2024-06-15 22:13:22 +0200
commitf0b5d179bbe51fc9aa0c441a100719680d82c825 (patch)
tree14f4f46eacf05d6fb5e11b873f081d4a876b8691 /src/main/java/at/hannibal2/skyhanni/data
parentbfe43b7ebffab551740d32cf919db27504d27ffb (diff)
downloadskyhanni-f0b5d179bbe51fc9aa0c441a100719680d82c825.tar.gz
skyhanni-f0b5d179bbe51fc9aa0c441a100719680d82c825.tar.bz2
skyhanni-f0b5d179bbe51fc9aa0c441a100719680d82c825.zip
formatting
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/data')
-rw-r--r--src/main/java/at/hannibal2/skyhanni/data/MiningAPI.kt4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/data/MiningAPI.kt b/src/main/java/at/hannibal2/skyhanni/data/MiningAPI.kt
index 8fe946833..1ff5a5d1d 100644
--- a/src/main/java/at/hannibal2/skyhanni/data/MiningAPI.kt
+++ b/src/main/java/at/hannibal2/skyhanni/data/MiningAPI.kt
@@ -39,11 +39,11 @@ object MiningAPI {
private val dwarvenBaseCampPattern by group.pattern("area.basecamp", "Dwarven Base Camp")
private val coldReset by group.pattern(
"cold.reset",
- "§6The warmth of the campfire reduced your §r§b❄ Cold §r§6to §r§a0§r§6!|§c ☠ §r§7You froze to death§r§7."
+ "§6The warmth of the campfire reduced your §r§b❄ Cold §r§6to §r§a0§r§6!|§c ☠ §r§7You froze to death§r§7.",
)
private val coldResetDeath by group.pattern(
"cold.deathreset",
- "§c ☠ §r§7§r§.(?<name>.+)§r§7 (?<reason>.+)"
+ "§c ☠ §r§7§r§.(?<name>.+)§r§7 (?<reason>.+)",
)
data class MinedBlock(val ore: OreBlock, var position: LorenzVec, var confirmed: Boolean, val time: SimpleTimeMark)