#W# Aligned the bandage delay with the OSI dex formula.

This commit is contained in:
WarrentyExpired 2026-07-13 15:03:06 -04:00
parent 413d656ced
commit 7154b76a6f

View file

@ -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;
}
}
}
}