diff --git a/Server/src/main/core/game/system/command/sets/MiscCommandSet.kt b/Server/src/main/core/game/system/command/sets/MiscCommandSet.kt index 5e3a5a39b..28f63e1cc 100644 --- a/Server/src/main/core/game/system/command/sets/MiscCommandSet.kt +++ b/Server/src/main/core/game/system/command/sets/MiscCommandSet.kt @@ -651,7 +651,7 @@ class MiscCommandSet : CommandSet(Privilege.ADMIN){ } //Snowscape custom commands - define("dps", Privilege.STANDARD, "::dps NPC ID", "Calculates and prints your current damage, accuracy, and DPS against the given NPC ID."){ player, args -> + define("dps", Privilege.STANDARD, "::dps NPC ID", "Calculates current DPS against the given NPC target."){ player, args -> // If NPC ID is specified, save as attribute. If unspecified, use last saved ID (defaults to Chicken) if (args.size > 1) { setAttribute(player, "snowscape:dpscalc", args[1].toInt()) @@ -671,6 +671,7 @@ class MiscCommandSet : CommandSet(Privilege.ADMIN){ attackSpeed-- } } else if (handler.type == CombatStyle.MAGIC) { + attackSpeed = 5 val spell = player.getProperties().getAutocastSpell() maxHit = if (spell != null) spell.getMaximumImpact(player, npc, null) else 0 }