mirror of
https://github.com/5vl/Staff.git
synced 2025-05-24 06:36:57 +00:00
11 lines
340 B
Kotlin
11 lines
340 B
Kotlin
package me.fivevl.staff.commands
|
|
|
|
import org.bukkit.command.Command
|
|
import org.bukkit.command.CommandExecutor
|
|
import org.bukkit.command.CommandSender
|
|
|
|
class StaffModeCommand : CommandExecutor {
|
|
override fun onCommand(sender: CommandSender, command: Command, label: String, args: Array<out String>): Boolean {
|
|
return true
|
|
}
|
|
} |