#W# Aligned the bandage delay with the OSI dex formula.
This commit is contained in:
parent
413d656ced
commit
7154b76a6f
1 changed files with 5 additions and 2 deletions
|
|
@ -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;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue