Implemented authentic dragon axe special attack and enabled it by default, osrs style is toggle via worldprop world config dragon_axe_use_osrs_spec = true

This commit is contained in:
Swizey
2023-02-16 22:47:18 +00:00
committed by Ryan
parent f243293e8c
commit 34f8db2557
4 changed files with 126 additions and 65 deletions
+3
View File
@@ -261,5 +261,8 @@ class ServerConstants {
@JvmField
var PERSIST_ACCOUNTS = false
@JvmField
var DRAGON_AXE_USE_OSRS_SPEC = false
}
}
@@ -132,6 +132,7 @@ object ServerConfigParser {
ServerConstants.DAILY_ACCOUNT_LIMIT = data.getLong("server.daily_accounts_per_ip", 3L).toInt()
ServerConstants.DISCORD_MOD_WEBHOOK = data.getString("server.moderation_webhook", "")
ServerConstants.NOAUTH_DEFAULT_ADMIN = data.getBoolean("server.noauth_default_admin", false)
ServerConstants.DRAGON_AXE_USE_OSRS_SPEC = data.getBoolean("world.dragon_axe_use_osrs_spec", false)
}