diff options
-rw-r--r-- | npc/functions/honor.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/npc/functions/honor.txt b/npc/functions/honor.txt index 0bb0d0803..c9c7f76fc 100644 --- a/npc/functions/honor.txt +++ b/npc/functions/honor.txt @@ -69,9 +69,9 @@ function script calc_HR { // Dishonorable: You used 15 levels above target, or target < level 30 if (.@overpower > 15 || .@def < 30) { - .@honor=-(limit(1, .@overpower-15, 15)); + .@honor=-(limit(1, .@overpower-15, 12)); } else { - .@honor=limit(1, -(.@overpower)+15, 20); + .@honor=limit(3, -(.@overpower)+15, 20); } // Log cooldown (30 minutes) |