fix: targeted voucher code not working

This commit is contained in:
minjaesong
2025-02-15 23:56:53 +09:00
parent ad68e04b83
commit 37d6d3004b
4 changed files with 26 additions and 10 deletions

View File

@@ -1,15 +1,19 @@
import net.torvald.terrarum.modulebasegame.redeemable.RedeemCodeMachine
import java.util.*
fun main() {
val uuid = UUID.randomUUID()
val code = RedeemCodeMachine.encode(
"item@basegame:65511",
6,
true
true,
null
)
println(code)
val voucher = RedeemCodeMachine.decode(code)
val voucher = RedeemCodeMachine.decode(code, uuid)
println(voucher)
}