monetary minimum version & rename impl

This commit is contained in:
alexcrea 2026-05-25 17:50:02 +02:00
parent 1660250ee1
commit ac9f492125
Signed by: alexcrea
GPG key ID: E346CD16413450E3
7 changed files with 34 additions and 4 deletions

View file

@ -0,0 +1,12 @@
package xyz.alexcrea.cuanvil.util
import org.bukkit.inventory.InventoryView
// TODO yet another cleanup to do on legacy removal branch
object RenameAnvilUtil {
fun rename(view: InventoryView, name: String) {
view.title = name
}
}