Delete reset of buff time after reconnection

06/03/2018 16:05 pDestroyer#1
Hi
When you've a buff with time > 60 Min, on reconnection the time is set to 60 min.

Buff.cpp
In this function :
Code:
void IBuff::Serialize( CAr & ar, CMover* pMover )
remove this :
Code:
#ifdef __WORLDSERVER
		if( IsCommon() && pMover && tmTotal >= MIN( 60 ) )
			tmTotal	= MIN( 60 );
#endif	// __WORLDSERVER
Enjoy :)