fix: off-by-one error in EmbedUtil

This commit is contained in:
cookieso 2023-12-06 18:12:41 +01:00 committed by moonleay
parent 05d2d1a6b9
commit 0bf527b6e0
Signed by: moonleay
GPG key ID: 82667543CCD715FB

View file

@ -82,7 +82,7 @@ object EmbedUtil {
fun getAllUsersInTheFirstXTables(amountOfTables: Int, e: Embed): List<String> {
val users = mutableListOf<String>()
for (i in 0 until amountOfTables - 1) {
for (i in 0 until amountOfTables) {
val f = e.fields[i]
if (!f.value.contains("@"))
continue // check next one. this one does not have any entries