diff --git a/Scripts/Items/Skill Items/Misc/Bandage.cs b/Scripts/Items/Skill Items/Misc/Bandage.cs index b90b137..ba0eef5 100644 --- a/Scripts/Items/Skill Items/Misc/Bandage.cs +++ b/Scripts/Items/Skill Items/Misc/Bandage.cs @@ -428,7 +428,10 @@ namespace Server.Items if ( onSelf ) { - seconds = 9.4 + (0.6 * ((double)(120 - dex) / 10)); + // the way Djervy wanted it seconds = 9.4 + (0.6 * ((double)(120 - dex) / 10)); + seconds = 11.0 - ((double)dex / 20.0 ); + if ( seconds < 5 ) + seconds = 5.0; } else { @@ -461,4 +464,4 @@ namespace Server.Items return null; } } -} \ No newline at end of file +}