aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--features/dungeonSolvers/index.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/features/dungeonSolvers/index.js b/features/dungeonSolvers/index.js
index 5a400a6..f56d8b5 100644
--- a/features/dungeonSolvers/index.js
+++ b/features/dungeonSolvers/index.js
@@ -65,7 +65,8 @@ class DungeonSolvers extends Feature {
this.lastDungFinishes = []
this.lastDungExps = []
- this.registerChat("&r&r&r &r&8+&r&3${exp} Catacombs Experience&r", (exp)=>{
+ this.registerChat("${start}+&r&3${exp} Catacombs Experience&r", (start, exp)=>{
+ if(ChatLib.removeFormatting(start).replace(/ /gi, "").length > 0) return
this.lastDungExps.push(parseFloat(exp.replace(/,/gi, "")))
if(this.lastDungExps.length > 5){
this.lastDungExps.shift()