VoidPlugin/VoidBank/build.gradle

36 lines
927 B
Groovy

dependencies {
compileOnly project(":VoidPlugin")
}
bukkit {
main = "nl.voidcorp.bankplugin.VoidBank"
apiVersion = '1.14'
author = 'J00LZ'
depend = ['VoidPlugin']
commands {
buymenu {
description = "Buy or sell stuff!"
}
woodstrip {
description = "Use this to transform stripped wood back into it's normal form"
}
checkcash {
description = "Check how many ECs you have in you account"
}
transfer {
description = "Send cash to another player"
}
reload {
description = "Reloads the fileconfig"
permission = "bank.reload"
permissionMessage = "You are not allowed to reload the config..."
}
}
permissions {
'bank.reload' {
setDefault("OP")
description = "Allows reloading the config"
}
}
}