mirror of
https://github.com/EQEmu/Server.git
synced 2025-12-13 06:21:28 +00:00
Fixed last minute math change typo.
This commit is contained in:
parent
66ef95b9c9
commit
6fb3c66fe5
@ -2909,7 +2909,7 @@ void Client::Handle_OP_ApplyPoison(const EQApplicationPacket *app)
|
||||
// Poisons that don't proc until a level higher than the
|
||||
// rogue simply won't apply at all, no skill check done.
|
||||
|
||||
if (ChanceRoll < (.9 + GetLevel()/1000) {
|
||||
if (ChanceRoll < (.9 + GetLevel()/1000)) {
|
||||
ApplyPoisonSuccessResult = 1;
|
||||
AddProcToWeapon(poison->Proc.Effect, false,
|
||||
(GetDEX() / 100) + 103);
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user