Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
package com.lambda.client.module.modules.chat

import com.lambda.client.commons.extension.synchronized
import com.lambda.client.module.Category
import com.lambda.client.module.Module
import com.lambda.client.util.FolderUtils
import com.lambda.client.util.TickTimer
import com.lambda.client.util.TimeUnit
import com.lambda.client.util.text.MessageDetection
import com.lambda.client.util.text.MessageSendHelper
import com.lambda.client.util.text.MessageSendHelper.sendServerMessage
import com.lambda.client.util.threads.defaultScope
import com.lambda.client.util.threads.safeListener
import com.lambda.client.commons.extension.synchronized
import com.lambda.client.util.FolderUtils
import kotlinx.coroutines.Dispatchers
import kotlinx.coroutines.launch
import net.minecraftforge.fml.common.gameevent.TickEvent
Expand All @@ -25,7 +25,7 @@ object Spammer : Module(
modulePriority = 100
) {
private val modeSetting by setting("Order", Mode.RANDOM_ORDER)
private val delay by setting("Delay", 10, 1..180, 1, description = "Delay between messages, in seconds")
private val delay by setting("Delay", 10, 1..600, 1, description = "Delay between messages, in seconds")
private val loadRemote by setting("Load From URL", false)
private val remoteURL by setting("Remote URL", "Unchanged", { loadRemote })

Expand Down