Skip to content

Commit 0cb284c

Browse files
authored
Make the spammer maximum value higher (#333)
This allows higher delays
1 parent ae4e8a0 commit 0cb284c

File tree

1 file changed

+3
-3
lines changed
  • src/main/kotlin/com/lambda/client/module/modules/chat

1 file changed

+3
-3
lines changed

src/main/kotlin/com/lambda/client/module/modules/chat/Spammer.kt

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
package com.lambda.client.module.modules.chat
22

3+
import com.lambda.client.commons.extension.synchronized
34
import com.lambda.client.module.Category
45
import com.lambda.client.module.Module
6+
import com.lambda.client.util.FolderUtils
57
import com.lambda.client.util.TickTimer
68
import com.lambda.client.util.TimeUnit
79
import com.lambda.client.util.text.MessageDetection
810
import com.lambda.client.util.text.MessageSendHelper
911
import com.lambda.client.util.text.MessageSendHelper.sendServerMessage
1012
import com.lambda.client.util.threads.defaultScope
1113
import com.lambda.client.util.threads.safeListener
12-
import com.lambda.client.commons.extension.synchronized
13-
import com.lambda.client.util.FolderUtils
1414
import kotlinx.coroutines.Dispatchers
1515
import kotlinx.coroutines.launch
1616
import net.minecraftforge.fml.common.gameevent.TickEvent
@@ -25,7 +25,7 @@ object Spammer : Module(
2525
modulePriority = 100
2626
) {
2727
private val modeSetting by setting("Order", Mode.RANDOM_ORDER)
28-
private val delay by setting("Delay", 10, 1..180, 1, description = "Delay between messages, in seconds")
28+
private val delay by setting("Delay", 10, 1..600, 1, description = "Delay between messages, in seconds")
2929
private val loadRemote by setting("Load From URL", false)
3030
private val remoteURL by setting("Remote URL", "Unchanged", { loadRemote })
3131

0 commit comments

Comments
 (0)