From d03e8d05ec0ef999a20e7f00c80d2cd60a7b55ab Mon Sep 17 00:00:00 2001 From: SecretsOTheP Date: Sun, 16 Jun 2013 13:04:48 -0700 Subject: [PATCH] --- common/patches/RoF.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/common/patches/RoF.cpp b/common/patches/RoF.cpp index da19e8d91..03893086c 100644 --- a/common/patches/RoF.cpp +++ b/common/patches/RoF.cpp @@ -4992,7 +4992,11 @@ char* SerializeItem(const ItemInst *inst, int16 slot_id_in, uint32 *length, uint ibs.Magic = item->Magic; ibs.CastTime_ = item->CastTime_; ibs.ReqLevel = item->ReqLevel; + if(item->ReqLevel > 100) + ibs.ReqLevel = 100; ibs.RecLevel = item->RecLevel; + if(item->RecLevel > 100) + ibs.RecLevel = 100; ibs.RecSkill = item->RecSkill; ibs.BardType = item->BardType; ibs.BardValue = item->BardValue;