Change info to default in EntityTools

This commit is contained in:
Dominika 2020-05-13 11:13:58 -04:00 committed by GitHub
parent 8d9619963a
commit fe28061ee8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -24,7 +24,7 @@ import org.lwjgl.input.Mouse
description = "Right click entities to perform actions on them"
)
class EntityTools : Module() {
private val mode = register(Settings.e<Mode>("Mode", Mode.DELETE))
private val mode = register(Settings.e<Mode>("Mode", Mode.INFO))
private var delay = 0
private enum class Mode {
@ -52,4 +52,4 @@ class EntityTools : Module() {
}
}
})
}
}