1
1
package com.lambda.client.module.modules.chat
2
2
3
+ import com.lambda.client.commons.extension.synchronized
3
4
import com.lambda.client.module.Category
4
5
import com.lambda.client.module.Module
6
+ import com.lambda.client.util.FolderUtils
5
7
import com.lambda.client.util.TickTimer
6
8
import com.lambda.client.util.TimeUnit
7
9
import com.lambda.client.util.text.MessageDetection
8
10
import com.lambda.client.util.text.MessageSendHelper
9
11
import com.lambda.client.util.text.MessageSendHelper.sendServerMessage
10
12
import com.lambda.client.util.threads.defaultScope
11
13
import com.lambda.client.util.threads.safeListener
12
- import com.lambda.client.commons.extension.synchronized
13
- import com.lambda.client.util.FolderUtils
14
14
import kotlinx.coroutines.Dispatchers
15
15
import kotlinx.coroutines.launch
16
16
import net.minecraftforge.fml.common.gameevent.TickEvent
@@ -25,7 +25,7 @@ object Spammer : Module(
25
25
modulePriority = 100
26
26
) {
27
27
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" )
29
29
private val loadRemote by setting(" Load From URL" , false )
30
30
private val remoteURL by setting(" Remote URL" , " Unchanged" , { loadRemote })
31
31
0 commit comments