Add EGF PIN to h9 export

Append EGF PIN at end of player line with | separator (e.g. |12345678)
when the player has a valid 8-character EGF PIN
This commit is contained in:
Claude Brisson
2025-11-29 16:57:33 +01:00
parent a6881d1276
commit 4788ef7bc9

View File

@@ -148,6 +148,8 @@ ${
player.getArray("results")!!.map {
(it as String).padStart(8, ' ')
}.joinToString(" ")
}${
player.getString("egf")?.let { if (it.length == 8) " |$it" else "" } ?: ""
}"
}
}