From 6fb3c66fe5fc717e7a70a95a1936a859ca246449 Mon Sep 17 00:00:00 2001 From: Paul Coene Date: Fri, 2 Mar 2018 20:08:06 -0500 Subject: [PATCH] Fixed last minute math change typo. --- zone/client_packet.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zone/client_packet.cpp b/zone/client_packet.cpp index 6974f3861..7e38d6363 100644 --- a/zone/client_packet.cpp +++ b/zone/client_packet.cpp @@ -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);