Add 'fly' as an alias for Flight

This commit is contained in:
Charlotte Som 2022-02-03 22:02:35 +00:00
parent 45d97bacc9
commit 085c1d14f4

View file

@ -76,4 +76,9 @@ class Flight : Feature("Flight", FeatureCategory.MOVEMENT) {
override fun onDisable() {
player.abilities.flying = false
}
override fun createFeatureCommand() =
super.createFeatureCommand().apply {
alias("fly")
}
}