mirror of
https://github.com/2006-Scape/apollo.git
synced 2026-07-03 16:49:11 +00:00
5 lines
211 B
Kotlin
5 lines
211 B
Kotlin
import org.apollo.game.model.entity.setting.PrivilegeLevel
|
|
|
|
// Opens the player's bank if they are an administrator.
|
|
on_command("bank", PrivilegeLevel.ADMINISTRATOR)
|
|
.then { player -> player.openBank() } |