mirror of
https://github.com/GayPizzaSpecifications/foundation.git
synced 2025-10-12 18:49:38 +00:00
8 lines
167 B
Kotlin
8 lines
167 B
Kotlin
package gay.pizza.foundation.common
|
|
|
|
import org.bukkit.entity.Player
|
|
|
|
fun Player.chat(vararg messages: String): Unit = messages.forEach { message ->
|
|
chat(message)
|
|
}
|